Enum bao_tree::PostOrderOffset 
source · pub enum PostOrderOffset {
    Stable(u64),
    Unstable(u64),
}Expand description
An offset of a node in a post-order outboard
Variants§
Stable(u64)
the node is stable and won’t change when appending data
Unstable(u64)
the node is unstable and will change when appending data
Implementations§
Trait Implementations§
source§impl Clone for PostOrderOffset
 
impl Clone for PostOrderOffset
source§fn clone(&self) -> PostOrderOffset
 
fn clone(&self) -> PostOrderOffset
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 PostOrderOffset
 
impl Debug for PostOrderOffset
impl Copy for PostOrderOffset
Auto Trait Implementations§
impl RefUnwindSafe for PostOrderOffset
impl Send for PostOrderOffset
impl Sync for PostOrderOffset
impl Unpin for PostOrderOffset
impl UnwindSafe for PostOrderOffset
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