pub struct TreeBranch {
pub trunk: String,
pub lbranch: Option<Box<TreeBranch>>,
pub rbranch: Option<Box<TreeBranch>>,
}Fields§
§trunk: String§lbranch: Option<Box<TreeBranch>>§rbranch: Option<Box<TreeBranch>>Auto Trait Implementations§
impl Freeze for TreeBranch
impl RefUnwindSafe for TreeBranch
impl Send for TreeBranch
impl Sync for TreeBranch
impl Unpin for TreeBranch
impl UnsafeUnpin for TreeBranch
impl UnwindSafe for TreeBranch
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