Trait enso_prelude::CellGetter[][src]

pub trait CellGetter: HasItem {
    fn get(&self) -> Self::Item;
}
Expand description

Generalization of the Cell::get mechanism. Can be used for anything similar to Cell.

Required methods

fn get(&self) -> Self::Item[src]

Implementors

impl<T: Copy> CellGetter for Cell<T>[src]

fn get(&self) -> Self::Item[src]