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: usizeImplementations§
Source§impl ContentLength
 
impl ContentLength
Sourcepub fn into_inner(&self) -> usize
 
pub fn into_inner(&self) -> usize
Returns Content-Length value.
Trait Implementations§
Source§impl Clone for ContentLength
 
impl Clone for ContentLength
Source§fn clone(&self) -> ContentLength
 
fn clone(&self) -> ContentLength
Returns a duplicate 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§impl PartialEq<usize> for ContentLength
 
impl PartialEq<usize> for ContentLength
Source§impl PartialEq for ContentLength
 
impl PartialEq for ContentLength
Source§impl PartialOrd<ContentLength> for usize
 
impl PartialOrd<ContentLength> for usize
Source§impl PartialOrd<usize> for ContentLength
 
impl PartialOrd<usize> for ContentLength
Source§impl PartialOrd for ContentLength
 
impl PartialOrd for ContentLength
Source§impl TryIntoHeaderValue for ContentLength
 
impl TryIntoHeaderValue for ContentLength
Source§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§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.