[][src]Struct typed_headers::ContentLength

pub struct ContentLength(pub u64);

Content-Length header, defined in RFC7230

When a message does not have a Transfer-Encoding header field, a Content-Length header field can provide the anticipated size, as a decimal number of octets, for a potential payload body. For messages that do include a payload body, the Content-Length field-value provides the framing information necessary for determining where the body (and message) ends. For messages that do not include a payload body, the Content-Length indicates the size of the selected representation.

ABNF

Content-Length = 1*DIGIT

Example values

  • 3495

Trait Implementations

impl Header for ContentLength[src]

impl Clone for ContentLength[src]

impl PartialEq<ContentLength> for ContentLength[src]

impl Deref for ContentLength[src]

type Target = u64

The resulting type after dereferencing.

impl DerefMut for ContentLength[src]

impl Debug for ContentLength[src]

impl StructuralPartialEq for ContentLength[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]