pub enum RangeUnsatisfiableError {
OverlappingRanges,
RangeReversed,
FileSuffixOutOfBounds,
IllegalWhitespace,
StartsWithWhitespace,
DoesNotStartWithToken,
ZeroSuffix,
BadStartOfRange,
BadEndOfRange,
UnexpectedNumberOfDashes,
Empty,
}
Variants§
OverlappingRanges
RangeReversed
FileSuffixOutOfBounds
IllegalWhitespace
StartsWithWhitespace
DoesNotStartWithToken
ZeroSuffix
BadStartOfRange
BadEndOfRange
UnexpectedNumberOfDashes
Empty
Trait Implementations§
source§impl Clone for RangeUnsatisfiableError
impl Clone for RangeUnsatisfiableError
source§fn clone(&self) -> RangeUnsatisfiableError
fn clone(&self) -> RangeUnsatisfiableError
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 RangeUnsatisfiableError
impl Debug for RangeUnsatisfiableError
source§impl Display for RangeUnsatisfiableError
impl Display for RangeUnsatisfiableError
source§impl Error for RangeUnsatisfiableError
impl Error for RangeUnsatisfiableError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for RangeUnsatisfiableError
impl PartialEq for RangeUnsatisfiableError
source§fn eq(&self, other: &RangeUnsatisfiableError) -> bool
fn eq(&self, other: &RangeUnsatisfiableError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RangeUnsatisfiableError
impl Eq for RangeUnsatisfiableError
impl StructuralPartialEq for RangeUnsatisfiableError
Auto Trait Implementations§
impl Freeze for RangeUnsatisfiableError
impl RefUnwindSafe for RangeUnsatisfiableError
impl Send for RangeUnsatisfiableError
impl Sync for RangeUnsatisfiableError
impl Unpin for RangeUnsatisfiableError
impl UnwindSafe for RangeUnsatisfiableError
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