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§
source§impl PartialEq for RangeUnit
impl PartialEq for RangeUnit
impl Eq for RangeUnit
impl StructuralEq for RangeUnit
impl StructuralPartialEq for RangeUnit
Auto Trait Implementations§
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