pub enum UtilRange {
Range(Range),
RangeWithoutByte(RangeWithoutByte),
}Variants§
Range(Range)
RangeWithoutByte(RangeWithoutByte)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UtilRange
impl<'de> Deserialize<'de> for UtilRange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RangeWithoutByte> for UtilRange
impl From<RangeWithoutByte> for UtilRange
Source§fn from(range: RangeWithoutByte) -> Self
fn from(range: RangeWithoutByte) -> Self
Converts to this type from the input type.
Source§impl Ord for UtilRange
impl Ord for UtilRange
Source§impl PartialOrd for UtilRange
impl PartialOrd for UtilRange
impl Eq for UtilRange
impl StructuralPartialEq for UtilRange
Auto Trait Implementations§
impl Freeze for UtilRange
impl RefUnwindSafe for UtilRange
impl Send for UtilRange
impl Sync for UtilRange
impl Unpin for UtilRange
impl UnwindSafe for UtilRange
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