pub trait Get<T> { // Required method fn get(&self) -> &T; }
The Get trait establishes a basic interface for objects to retrieve an immutable reference to an inner value of type T.
Get
T
returns an immutable reference to the inner value