pub trait Get<T> {
    fn get() -> T;
}
Expand description

A trait for querying a single value from a type.

It is not required that the value is constant.

Required Methods§

Return the current value.

Implementations on Foreign Types§

Implementors§