pub enum AvlDirection {
Left = 0,
Right = 1,
}Available on crate feature
avl only.Variants§
Trait Implementations§
Source§impl Clone for AvlDirection
impl Clone for AvlDirection
Source§fn clone(&self) -> AvlDirection
fn clone(&self) -> AvlDirection
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 AvlDirection
impl Debug for AvlDirection
Source§impl PartialEq for AvlDirection
impl PartialEq for AvlDirection
impl Copy for AvlDirection
impl StructuralPartialEq for AvlDirection
Auto Trait Implementations§
impl Freeze for AvlDirection
impl RefUnwindSafe for AvlDirection
impl Send for AvlDirection
impl Sync for AvlDirection
impl Unpin for AvlDirection
impl UnwindSafe for AvlDirection
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