MCPcopy Index your code
hub / github.com/derekbanas/Rust-Tutorial / right

Method right

main.rs:944–947  ·  view source on GitHub ↗
(mut self, node: TreeNode<T>)

Source from the content-addressed store, hash-verified

942 }
943
944 pub fn right(mut self, node: TreeNode<T>) -> Self {
945 self.right = Some(Box::new(node));
946 self
947 }
948 }
949
950 // Create the root node with left and right

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected