[−][src]Struct headers::ContentRange
Content-Range, described in RFC7233
ABNF
Content-Range = byte-content-range
/ other-content-range
byte-content-range = bytes-unit SP
( byte-range-resp / unsatisfied-range )
byte-range-resp = byte-range "/" ( complete-length / "*" )
byte-range = first-byte-pos "-" last-byte-pos
unsatisfied-range = "*/" complete-length
complete-length = 1*DIGIT
other-content-range = other-range-unit SP other-range-resp
other-range-resp = *CHAR
Example
use headers::ContentRange; // 100 bytes (included byte 199), with a full length of 3,400 let cr = ContentRange::bytes(100..200, 3400).unwrap();
Implementations
impl ContentRange
[src]
pub fn bytes(
range: impl RangeBounds<u64>,
complete_length: impl Into<Option<u64>>
) -> Result<ContentRange, InvalidContentRange>
[src]
range: impl RangeBounds<u64>,
complete_length: impl Into<Option<u64>>
) -> Result<ContentRange, InvalidContentRange>
Construct a new Content-Range: bytes ..
header.
pub fn unsatisfied_bytes(complete_length: u64) -> Self
[src]
Create a new ContentRange
stating the range could not be satisfied.
The passed argument is the complete length of the entity.
pub fn bytes_range(&self) -> Option<(u64, u64)>
[src]
Get the byte range if satisified.
Note that these byte ranges are inclusive on both ends.
pub fn bytes_len(&self) -> Option<u64>
[src]
Get the bytes complete length if available.
Trait Implementations
impl Clone for ContentRange
[src]
fn clone(&self) -> ContentRange
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ContentRange
[src]
impl Header for ContentRange
[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<ContentRange> for ContentRange
[src]
fn eq(&self, other: &ContentRange) -> bool
[src]
fn ne(&self, other: &ContentRange) -> bool
[src]
impl StructuralPartialEq for ContentRange
[src]
Auto Trait Implementations
impl RefUnwindSafe for ContentRange
impl Send for ContentRange
impl Sync for ContentRange
impl Unpin for ContentRange
impl UnwindSafe for ContentRange
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>,