pub struct ContentLength(pub u64);
Expand description
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
Tuple Fields§
§0: u64
Trait Implementations§
Source§impl Clone for ContentLength
impl Clone for ContentLength
Source§fn clone(&self) -> ContentLength
fn clone(&self) -> ContentLength
Returns a copy 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 Header for ContentLength
impl Header for ContentLength
Source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
Returns the name of this header. Read more
Source§fn from_values(
values: &mut ValueIter<'_, HeaderValue>,
) -> Result<Option<ContentLength>, Error>
fn from_values( values: &mut ValueIter<'_, HeaderValue>, ) -> Result<Option<ContentLength>, Error>
Parses the header from the raw value bytes. Read more
Source§impl PartialEq for ContentLength
impl PartialEq 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