Trait Layerer

Source
pub trait Layerer<L>
where L: Layer,
{ // Required method fn current(&self) -> Option<L>; }
Expand description

Layerer controls how items are iterated over a CellMaps layers.

Required Methods§

Source

fn current(&self) -> Option<L>

Returns the current layer.

Implementors§

Source§

impl<L> Layerer<L> for Many<L>
where L: Layer,

Source§

impl<L> Layerer<L> for Map<L>
where L: Layer,

Source§

impl<L> Layerer<L> for Single<L>
where L: Layer,