Enum actix_web::http::header::ContentRangeSpec
source · pub enum ContentRangeSpec {
Bytes {
range: Option<(u64, u64)>,
instance_length: Option<u64>,
},
Unregistered {
unit: String,
resp: String,
},
}
Expand description
Content-Range header, defined in RFC 7233 §4.2
§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
§type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
source§impl PartialEq for ContentRangeSpec
impl PartialEq for ContentRangeSpec
source§fn eq(&self, other: &ContentRangeSpec) -> bool
fn eq(&self, other: &ContentRangeSpec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryIntoHeaderValue for ContentRangeSpec
impl TryIntoHeaderValue for ContentRangeSpec
§type Error = InvalidHeaderValue
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
source§fn try_into_value(self) -> Result<HeaderValue, Self::Error>
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
Try to convert value to a HeaderValue.
impl Eq 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.