pub trait GetField {
    type Output;
    type Field;

    fn get(&self, field: &Self::Field) -> Self::Output;
}
Expand description

We keep the GetField implementation on each individual Get<Getter, Values> implementation to lower the risk of a field diverging as 2 different Value types

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors