pub trait TypedGet {
    type Type;

    fn get() -> Self::Type;
}
Expand description

A trait for querying a single value from a type defined in the trait.

It is not required that the value is constant.

Required Associated Types§

The type which is returned.

Required Methods§

Return the current value.

Implementations on Foreign Types§

Implementors§