Struct actix_web::http::header::ContentLength
source · pub struct ContentLength(pub usize);
Expand description
Content-Length
header, defined in RFC 9110 §8.6.
The Content-Length
§ABNF
Content-Length = 1*DIGIT
§Example Values
0
3495
§Examples
use actix_web::{http::header::ContentLength, HttpResponse};
let res_empty = HttpResponse::Ok()
.insert_header(ContentLength(0));
let res_fake_cl = HttpResponse::Ok()
.insert_header(ContentLength(3_495));
Tuple Fields§
§0: usize
Implementations§
source§impl ContentLength
impl ContentLength
sourcepub fn into_inner(&self) -> usize
pub fn into_inner(&self) -> usize
Returns Content-Length value.
Methods from Deref<Target = usize>§
pub const MIN: usize = 0usize
pub const MAX: usize = 18_446_744_073_709_551_615usize
pub const BITS: u32 = 64u32
Trait Implementations§
source§impl Clone for ContentLength
impl Clone for ContentLength
source§fn clone(&self) -> ContentLength
fn clone(&self) -> ContentLength
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ContentLength
impl Debug for ContentLength
source§impl Deref for ContentLength
impl Deref for ContentLength
source§impl DerefMut for ContentLength
impl DerefMut for ContentLength
source§impl From<ContentLength> for usize
impl From<ContentLength> for usize
source§fn from(ContentLength: ContentLength) -> Self
fn from(ContentLength: ContentLength) -> Self
Converts to this type from the input type.
source§impl From<usize> for ContentLength
impl From<usize> for ContentLength
source§impl FromStr for ContentLength
impl FromStr for ContentLength
source§impl Header for ContentLength
impl Header for ContentLength
source§fn name() -> HeaderName
fn name() -> HeaderName
Returns the name of the header field.
source§fn parse<M: HttpMessage>(msg: &M) -> Result<Self, ParseError>
fn parse<M: HttpMessage>(msg: &M) -> Result<Self, ParseError>
Parse the header from a HTTP message.
source§impl Ord for ContentLength
impl Ord for ContentLength
source§fn cmp(&self, other: &ContentLength) -> Ordering
fn cmp(&self, other: &ContentLength) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ContentLength> for usize
impl PartialEq<ContentLength> for usize
source§fn eq(&self, other: &ContentLength) -> bool
fn eq(&self, other: &ContentLength) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<usize> for ContentLength
impl PartialEq<usize> for ContentLength
source§impl PartialEq for ContentLength
impl PartialEq for ContentLength
source§fn eq(&self, other: &ContentLength) -> bool
fn eq(&self, other: &ContentLength) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ContentLength> for usize
impl PartialOrd<ContentLength> for usize
source§fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<usize> for ContentLength
impl PartialOrd<usize> for ContentLength
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for ContentLength
impl PartialOrd for ContentLength
source§fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TryIntoHeaderValue for ContentLength
impl TryIntoHeaderValue for ContentLength
§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
source§fn try_into_value(self) -> Result<HeaderValue, Self::Error>
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
Try to convert value to a HeaderValue.
impl Eq for ContentLength
impl StructuralPartialEq for ContentLength
Auto Trait Implementations§
impl Freeze for ContentLength
impl RefUnwindSafe for ContentLength
impl Send for ContentLength
impl Sync for ContentLength
impl Unpin for ContentLength
impl UnwindSafe for ContentLength
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.