rust: rectify method nomenclature

This commit is contained in:
Marcello 2022-09-24 18:10:38 +02:00
parent c022bf135e
commit d388e53499

View file

@ -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