pub struct Layout<T> {
pub cols: Vec<Vec<Item<T>>>,
pub rows: Vec<Vec<Item<T>>>,
}
Expand description
A layout composed of two number grids.
Fields§
§cols: Vec<Vec<Item<T>>>
§rows: Vec<Vec<Item<T>>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Layout<T>
impl<T> RefUnwindSafe for Layout<T>where
T: RefUnwindSafe,
impl<T> Send for Layout<T>where
T: Send,
impl<T> Sync for Layout<T>where
T: Sync,
impl<T> Unpin for Layout<T>where
T: Unpin,
impl<T> UnwindSafe for Layout<T>where
T: 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