pub trait ConsGetter<T, I> {
    fn get(&self) -> &T;
    fn get_mut(&mut self) -> &mut T;
}
Expand description

Trait for getting a Cons element by type.

Required Methods

Gets an element by type from cons.

Mutably gets an element by type from cons.

Implementations on Foreign Types

Implementors