mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
rust: rectify method nomenclature
This commit is contained in:
parent
c022bf135e
commit
d388e53499
1 changed files with 8 additions and 17 deletions
|
@ -642,36 +642,27 @@ let origin = Point(0, 0, 0);
|
|||
|
||||
```rs
|
||||
#[derive(Debug)] // inherit the debug trait
|
||||
struct StructName
|
||||
{
|
||||
field: value,
|
||||
...
|
||||
}
|
||||
struct Struct { }
|
||||
|
||||
let s: Struct = { /* valorization */};
|
||||
println!("{:?}", s) // debug output: { field: value, ... }
|
||||
```
|
||||
|
||||
### Methods & Associated Functions
|
||||
### Associated Functions & Type-Associated Functions (aka Methods)
|
||||
|
||||
```rs
|
||||
struct Struct
|
||||
{
|
||||
field: value,
|
||||
...
|
||||
}
|
||||
|
||||
struct Struct { };
|
||||
impl Struct
|
||||
{
|
||||
fn method(&self, arg: Type) -> Type { }
|
||||
fn method(&mut self, arg: Type) -> Type { } // able to modify instance
|
||||
fn associated_func(arg: Type) -> Type { } // "static" method
|
||||
fn associated_function(&self, arg: Type) -> Type { }
|
||||
fn associated_function(&mut self, arg: Type) -> Type { } // able to modify instance
|
||||
fn type_associated_function(arg: Type) -> Type { } // does not have self parameter
|
||||
}
|
||||
|
||||
let s: Struct = { /* valorization */};
|
||||
s.method(arg); // use struct method
|
||||
s.associated_function(arg); // use struct method
|
||||
|
||||
Struct::associated_func(arg);
|
||||
Struct::type_associated_function(arg);
|
||||
```
|
||||
|
||||
## Traits
|
||||
|
|
Loading…
Add table
Reference in a new issue