pub enum NumberSpaceType {
Lt(usize),
Lte(usize),
Eq(usize),
Gte(usize),
Gt(usize),
Between(usize, usize),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for NumberSpaceType
impl Clone for NumberSpaceType
Source§fn clone(&self) -> NumberSpaceType
fn clone(&self) -> NumberSpaceType
Returns a duplicate 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 NumberSpaceType
impl Debug for NumberSpaceType
Source§impl Display for NumberSpaceType
impl Display for NumberSpaceType
Source§impl Hash for NumberSpaceType
impl Hash for NumberSpaceType
Source§impl PartialEq for NumberSpaceType
impl PartialEq for NumberSpaceType
impl Copy for NumberSpaceType
impl Eq for NumberSpaceType
impl StructuralPartialEq for NumberSpaceType
Auto Trait Implementations§
impl Freeze for NumberSpaceType
impl RefUnwindSafe for NumberSpaceType
impl Send for NumberSpaceType
impl Sync for NumberSpaceType
impl Unpin for NumberSpaceType
impl UnwindSafe for NumberSpaceType
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