Struct actix_web_lab::header::ContentLength
source · [−]pub struct ContentLength(_);Expand description
Content-Length header, defined in RFC 9110 §8.6.
The “Content-Length” header field indicates the associated representation’s data length as a decimal non-negative integer number of octets.
ABNF
Content-Length = 1*DIGITImplementations
sourceimpl ContentLength
impl ContentLength
sourcepub fn into_inner(&self) -> usize
pub fn into_inner(&self) -> usize
Returns Content-Length value.
Trait Implementations
sourceimpl Clone for ContentLength
impl Clone for ContentLength
sourcefn clone(&self) -> ContentLength
fn clone(&self) -> ContentLength
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ContentLength
impl Debug for ContentLength
sourceimpl From<ContentLength> for usize
impl From<ContentLength> for usize
sourcefn from(ContentLength: ContentLength) -> Self
fn from(ContentLength: ContentLength) -> Self
Converts to this type from the input type.
sourceimpl From<usize> for ContentLength
impl From<usize> for ContentLength
sourceimpl FromStr for ContentLength
impl FromStr for ContentLength
sourceimpl Header for ContentLength
impl Header for ContentLength
sourcefn name() -> HeaderName
fn name() -> HeaderName
Returns the name of the header field.
sourcefn parse<M: HttpMessage>(msg: &M) -> Result<Self, ParseError>
fn parse<M: HttpMessage>(msg: &M) -> Result<Self, ParseError>
Parse the header from a HTTP message.
sourceimpl Ord for ContentLength
impl Ord for ContentLength
sourcefn cmp(&self, other: &ContentLength) -> Ordering
fn cmp(&self, other: &ContentLength) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ContentLength> for ContentLength
impl PartialEq<ContentLength> for ContentLength
sourcefn eq(&self, other: &ContentLength) -> bool
fn eq(&self, other: &ContentLength) -> bool
sourceimpl PartialEq<ContentLength> for usize
impl PartialEq<ContentLength> for usize
sourcefn eq(&self, other: &ContentLength) -> bool
fn eq(&self, other: &ContentLength) -> bool
sourceimpl PartialOrd<ContentLength> for ContentLength
impl PartialOrd<ContentLength> for ContentLength
sourcefn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moresourceimpl PartialOrd<ContentLength> for usize
impl PartialOrd<ContentLength> for usize
sourcefn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
fn partial_cmp(&self, other: &ContentLength) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moresourceimpl PartialOrd<usize> for ContentLength
impl PartialOrd<usize> for ContentLength
sourcefn partial_cmp(&self, other: &usize) -> Option<Ordering>
fn partial_cmp(&self, other: &usize) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moresourceimpl TryIntoHeaderValue for ContentLength
impl TryIntoHeaderValue for ContentLength
type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
sourcefn 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 StructuralEq for ContentLength
impl StructuralPartialEq for ContentLength
Auto Trait Implementations
impl RefUnwindSafe for ContentLength
impl Send for ContentLength
impl Sync for ContentLength
impl Unpin for ContentLength
impl UnwindSafe for ContentLength
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.