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.
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);Tuple Fields§
§0: u64Trait Implementations§
Source§impl Clone for ContentLength
impl Clone for ContentLength
Source§fn clone(&self) -> ContentLength
fn clone(&self) -> ContentLength
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ContentLength
impl Debug for ContentLength
Source§impl Header for ContentLength
impl Header 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes