leetcode_tree

Type Alias TreeLink

Source
pub type TreeLink = Option<Rc<RefCell<TreeNode>>>;

Aliased Type§

enum TreeLink {
    None,
    Some(Rc<RefCell<TreeNode>>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Rc<RefCell<TreeNode>>)

Some value of type T.