pub enum Force {
No,
Yes,
Discard,
}Expand description
cursor movement qualifier
There are a few options for cursor movement to branches:
- Force::No, moves to the branch if it is not empty
- Force::Yes, forces the move to an empty branch
- Force::Discard, moves to full or empty branchs, discarding the currently active branch. This will effectively connect the upper node to the lower node, bypassing the current one
Variants§
Trait Implementations§
impl Copy for Force
impl Eq for Force
impl StructuralPartialEq for Force
Auto Trait Implementations§
impl Freeze for Force
impl RefUnwindSafe for Force
impl Send for Force
impl Sync for Force
impl Unpin for Force
impl UnwindSafe for Force
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