mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56: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
|
```rs
|
||||||
#[derive(Debug)] // inherit the debug trait
|
#[derive(Debug)] // inherit the debug trait
|
||||||
struct StructName
|
struct Struct { }
|
||||||
{
|
|
||||||
field: value,
|
|
||||||
...
|
|
||||||
}
|
|
||||||
|
|
||||||
let s: Struct = { /* valorization */};
|
let s: Struct = { /* valorization */};
|
||||||
println!("{:?}", s) // debug output: { field: value, ... }
|
println!("{:?}", s) // debug output: { field: value, ... }
|
||||||
```
|
```
|
||||||
|
|
||||||
### Methods & Associated Functions
|
### Associated Functions & Type-Associated Functions (aka Methods)
|
||||||
|
|
||||||
```rs
|
```rs
|
||||||
struct Struct
|
struct Struct { };
|
||||||
{
|
|
||||||
field: value,
|
|
||||||
...
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Struct
|
impl Struct
|
||||||
{
|
{
|
||||||
fn method(&self, arg: Type) -> Type { }
|
fn associated_function(&self, arg: Type) -> Type { }
|
||||||
fn method(&mut self, arg: Type) -> Type { } // able to modify instance
|
fn associated_function(&mut self, arg: Type) -> Type { } // able to modify instance
|
||||||
fn associated_func(arg: Type) -> Type { } // "static" method
|
fn type_associated_function(arg: Type) -> Type { } // does not have self parameter
|
||||||
}
|
}
|
||||||
|
|
||||||
let s: Struct = { /* valorization */};
|
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
|
## Traits
|
||||||
|
|
Loading…
Add table
Reference in a new issue