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
§Example
use hyper::header::{Headers, ContentLength};
let mut headers = Headers::new();
headers.set(ContentLength(1024u64));
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 Display for ContentLength
impl Display for ContentLength
§impl From<ContentLength> for Header<'static>
impl From<ContentLength> for Header<'static>
§fn from(header: ContentLength) -> Header<'static>
fn from(header: ContentLength) -> Header<'static>
Converts to this type from the input type.
source§impl Header for ContentLength
impl Header for ContentLength
source§fn header_name() -> &'static str
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
source§fn parse_header(raw: &[Vec<u8>]) -> Result<ContentLength, Error>
fn parse_header(raw: &[Vec<u8>]) -> Result<ContentLength, Error>
Parse a header from a raw stream of bytes. Read more
source§impl HeaderFormat for ContentLength
impl HeaderFormat for ContentLength
source§impl PartialEq for ContentLength
impl PartialEq for ContentLength
impl Copy 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)