pub enum ContentRangeSpec {
Bytes {
range: Option<(u64, u64)>,
instance_length: Option<u64>,
},
Unregistered {
unit: String,
resp: String,
},
}
Expand description
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
Variants§
Bytes
Byte range
Fields
Unregistered
Custom range, with unit not registered at IANA
Trait Implementations§
source§impl Clone for ContentRangeSpec
impl Clone for ContentRangeSpec
source§fn clone(&self) -> ContentRangeSpec
fn clone(&self) -> ContentRangeSpec
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 ContentRangeSpec
impl Debug for ContentRangeSpec
source§impl Display for ContentRangeSpec
impl Display for ContentRangeSpec
source§impl FromStr for ContentRangeSpec
impl FromStr for ContentRangeSpec
source§impl PartialEq for ContentRangeSpec
impl PartialEq for ContentRangeSpec
impl StructuralPartialEq for ContentRangeSpec
Auto Trait Implementations§
impl Freeze for ContentRangeSpec
impl RefUnwindSafe for ContentRangeSpec
impl Send for ContentRangeSpec
impl Sync for ContentRangeSpec
impl Unpin for ContentRangeSpec
impl UnwindSafe for ContentRangeSpec
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
)