Trait enso_flexer::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]

Loading content...

Implementors

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

pub fn get(&self) -> <Cell<T> as HasItem>::Item[src]

Loading content...