Struct leetcode_test_utils::tree::raw_def::TreeNode [−][src]
pub struct TreeNode {
pub val: i32,
pub left: Option<Rc<RefCell<TreeNode>>>,
pub right: Option<Rc<RefCell<TreeNode>>>,
}Fields
val: i32left: Option<Rc<RefCell<TreeNode>>>right: Option<Rc<RefCell<TreeNode>>>Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for TreeNodeimpl !UnwindSafe for TreeNode