Jstey

Results 1 comments of Jstey

struct Foo { bar: Bar, } impl Foo { fn get_bar(&self) -> &Bar { &self.bar } } struct Bar; impl Bar { fn greet(&self) { println!("Hello!"); } } fn main()...