pub enum Testree {
Node {
lft: Box<Testree>,
rgt: Box<Testree>,
},
Leaf {
val: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for Testree
impl RefUnwindSafe for Testree
impl Send for Testree
impl Sync for Testree
impl Unpin for Testree
impl UnwindSafe for Testree
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