rust: add associated consts notes

This commit is contained in:
Marcello 2022-09-26 18:40:51 +02:00
parent d388e53499
commit 58656c56c4

View file

@ -665,6 +665,16 @@ s.associated_function(arg); // use struct method
Struct::type_associated_function(arg);
```
### Associated Consts
```rs
struct Struct {
const ASSOCIATED_CONST: Type = <value>;
}
Struct::ASSOCIATED_CONST;
```
## Traits
A Trait is a collection of methods representing a set of behaviours necessary to accomplish some task.