pub enum LevelRelation {
SameLevel,
OutLevel(i32),
InLevel(i32),
}Variants§
Trait Implementations§
Source§impl Debug for LevelRelation
impl Debug for LevelRelation
Source§impl PartialEq for LevelRelation
impl PartialEq for LevelRelation
Source§fn eq(&self, other: &LevelRelation) -> bool
fn eq(&self, other: &LevelRelation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LevelRelation
Auto Trait Implementations§
impl Freeze for LevelRelation
impl RefUnwindSafe for LevelRelation
impl Send for LevelRelation
impl Sync for LevelRelation
impl Unpin for LevelRelation
impl UnsafeUnpin for LevelRelation
impl UnwindSafe for LevelRelation
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