pub trait Get<T> { fn get() -> T; }
A trait for querying a single value from a type.
It is not required that the value is constant.
Return the current value.