[−][src]Struct 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.
Note that setting this header will remove any previously set
Transfer-Encoding
header, in accordance with
RFC7230:
A sender MUST NOT send a Content-Length header field in any message that contains a Transfer-Encoding header field.
ABNF
Content-Length = 1*DIGIT
Example values
3495
Example
use headers::ContentLength; let len = ContentLength(1_000);
Trait Implementations
impl Clone for ContentLength
[src]
fn clone(&self) -> ContentLength
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ContentLength
[src]
impl Debug for ContentLength
[src]
impl Header for ContentLength
[src]
fn name() -> &'static HeaderName
[src]
fn decode<'i, I: Iterator<Item = &'i HeaderValue>>(
values: &mut I
) -> Result<Self, Error>
[src]
values: &mut I
) -> Result<Self, Error>
fn encode<E: Extend<HeaderValue>>(&self, values: &mut E)
[src]
impl PartialEq<ContentLength> for ContentLength
[src]
fn eq(&self, other: &ContentLength) -> bool
[src]
fn ne(&self, other: &ContentLength) -> bool
[src]
impl StructuralPartialEq for ContentLength
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> 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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,