pub trait GridViewPrint<Pos>: GridView<Pos, 2>where
    Pos: GridPos<2>,{
    // Provided method
    fn print<MapFn, Out>(
        self,
        map_fn: MapFn
    ) -> GridPrint<Self, Pos, MapFn, Out>
       where MapFn: Fn(Self::Item) -> Out,
             Out: Display,
             Self: Sized { ... }
}

Provided Methods§

source

fn print<MapFn, Out>(self, map_fn: MapFn) -> GridPrint<Self, Pos, MapFn, Out>where MapFn: Fn(Self::Item) -> Out, Out: Display, Self: Sized,

Implementors§

source§

impl<Grid, Pos> GridViewPrint<Pos> for Gridwhere Grid: GridView<Pos, 2>, Pos: GridPos<2>,