pub enum TapNode {
Leaf(TapLeaf),
Branch(Box<TapNode>, Box<TapNode>),
}Expand description
A node in the tap tree
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TapNode
impl RefUnwindSafe for TapNode
impl Send for TapNode
impl Sync for TapNode
impl Unpin for TapNode
impl UnwindSafe for TapNode
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