logo
pub trait Getter<T> {
    fn get(from: &T) -> &Self;
}
Expand description

Powerfull way to get object properties.

Required Methods

Typed getter

Implementors

Promote the Getter trait.