pub enum RangeUnit {
Bytes,
None,
Unregistered(String),
}
Expand description
Variants§
Bytes
Indicating byte-range requests are supported.
None
Reserved as keyword, indicating no ranges are supported.
Unregistered(String)
The given range unit is not registered at IANA.
Trait Implementations§
impl Eq for RangeUnit
impl StructuralPartialEq for RangeUnit
Auto Trait Implementations§
impl Freeze for RangeUnit
impl RefUnwindSafe for RangeUnit
impl Send for RangeUnit
impl Sync for RangeUnit
impl Unpin for RangeUnit
impl UnwindSafe for RangeUnit
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
)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.