pub struct BinaryTreeNode {
pub id: usize,
pub left: Option<Box<BinaryTreeNode>>,
pub right: Option<Box<BinaryTreeNode>>,
}Fields§
§id: usize§left: Option<Box<BinaryTreeNode>>§right: Option<Box<BinaryTreeNode>>Implementations§
Auto Trait Implementations§
impl Freeze for BinaryTreeNode
impl RefUnwindSafe for BinaryTreeNode
impl Send for BinaryTreeNode
impl Sync for BinaryTreeNode
impl Unpin for BinaryTreeNode
impl UnsafeUnpin for BinaryTreeNode
impl UnwindSafe for BinaryTreeNode
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