pub trait TypedGet { type Type; // Required method fn get() -> Self::Type; }
A trait for querying a single value from a type defined in the trait.
It is not required that the value is constant.
The type which is returned.
Return the current value.