pub struct GridPrint<Grid, Pos, MapFn, Out>where
Grid: GridView<Pos, 2>,
Pos: GridPos<2>,
MapFn: Fn(<Grid as GridView<Pos, 2>>::Item) -> Out,
Out: Display,{ /* private fields */ }
Trait Implementations§
Auto Trait Implementations§
impl<Grid, Pos, MapFn, Out> RefUnwindSafe for GridPrint<Grid, Pos, MapFn, Out>where Grid: RefUnwindSafe, MapFn: RefUnwindSafe, Pos: RefUnwindSafe,
impl<Grid, Pos, MapFn, Out> Send for GridPrint<Grid, Pos, MapFn, Out>where Grid: Send, MapFn: Send, Pos: Send,
impl<Grid, Pos, MapFn, Out> Sync for GridPrint<Grid, Pos, MapFn, Out>where Grid: Sync, MapFn: Sync, Pos: Sync,
impl<Grid, Pos, MapFn, Out> Unpin for GridPrint<Grid, Pos, MapFn, Out>where Grid: Unpin, MapFn: Unpin, Pos: Unpin,
impl<Grid, Pos, MapFn, Out> UnwindSafe for GridPrint<Grid, Pos, MapFn, Out>where Grid: UnwindSafe, MapFn: UnwindSafe, Pos: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more