Trait tuix::Lens[]

pub trait Lens: 'static {
    type Source: Node;
    type Target;
    fn view(&self, data: &'a Self::Source) -> Self::Target;
}

Associated Types

Required methods

Implementors