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