pub enum RangeCheckResult {
InRange,
BeforeOrBetweenRanges,
AfterLastRange,
}
Variants§
Trait Implementations§
Source§impl Clone for RangeCheckResult
impl Clone for RangeCheckResult
Source§fn clone(&self) -> RangeCheckResult
fn clone(&self) -> RangeCheckResult
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 RangeCheckResult
impl Debug for RangeCheckResult
Source§impl PartialEq for RangeCheckResult
impl PartialEq for RangeCheckResult
impl Copy for RangeCheckResult
impl StructuralPartialEq for RangeCheckResult
Auto Trait Implementations§
impl Freeze for RangeCheckResult
impl RefUnwindSafe for RangeCheckResult
impl Send for RangeCheckResult
impl Sync for RangeCheckResult
impl Unpin for RangeCheckResult
impl UnwindSafe for RangeCheckResult
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