[−][src]Struct typed_headers::ContentLength
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]
fn name() -> &'static HeaderName
[src]
fn from_values(
values: &mut ValueIter<HeaderValue>
) -> Result<Option<ContentLength>, Error>
[src]
values: &mut ValueIter<HeaderValue>
) -> Result<Option<ContentLength>, Error>
fn to_values(&self, values: &mut ToValues)
[src]
impl Clone for ContentLength
[src]
fn clone(&self) -> ContentLength
[src]
default fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<ContentLength> for ContentLength
[src]
fn eq(&self, other: &ContentLength) -> bool
[src]
fn ne(&self, other: &ContentLength) -> bool
[src]
impl DerefMut for ContentLength
[src]
impl Deref for ContentLength
[src]
impl Debug for ContentLength
[src]
Auto Trait Implementations
impl Send for ContentLength
impl Sync for ContentLength
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,