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 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 PostOrderOffset
impl Debug for PostOrderOffset
impl Copy for PostOrderOffset
Auto Trait Implementations§
impl Freeze for PostOrderOffset
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