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

Method left

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

Source from the content-addressed store, hash-verified

937 }
938
939 pub fn left(mut self, node: TreeNode<T>) -> Self {
940 self.left = Some(Box::new(node));
941 self
942 }
943
944 pub fn right(mut self, node: TreeNode<T>) -> Self {
945 self.right = Some(Box::new(node));

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected