Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Last active January 17, 2022 21:37
Show Gist options
  • Save FermiDirak/5e122e1e1b93eafe0373ab33fc7a2913 to your computer and use it in GitHub Desktop.
Save FermiDirak/5e122e1e1b93eafe0373ab33fc7a2913 to your computer and use it in GitHub Desktop.
struct MyStruct { /* ... */ }
impl MyStruct {
pub fn instance_method(&self) { /* ... */ };
}
// usage
let my_struct = MyStruct { /* ... */ }
my_struct.instance_method();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment