diff --git a/doc/rust.md b/doc/rust.md index 5936f6b2848bd..bf28f2523af41 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -1175,6 +1175,9 @@ Values with a trait type can have [methods called](#method-call-expressions) on for any method in the trait, and can be used to instantiate type parameters that are bounded by the trait. +Trait methods may be static. Currently implementations of static methods behave like +functions declared in the implentation's module. + ### Implementations An _implementation_ is an item that implements a [trait](#traits) for a specific type.