pub struct GridOptions {
pub direction: Direction,
pub filling: Filling,
}
Expand description
The user-assignable options for a grid view that should be passed to
Grid::new()
.
Fields§
§direction: Direction
The direction that the cells should be written in — either across, or downwards.
filling: Filling
The number of spaces to put in between each column of cells.
Trait Implementations§
Source§impl Debug for GridOptions
impl Debug for GridOptions
Source§impl PartialEq for GridOptions
impl PartialEq for GridOptions
impl StructuralPartialEq for GridOptions
Auto Trait Implementations§
impl Freeze for GridOptions
impl RefUnwindSafe for GridOptions
impl Send for GridOptions
impl Sync for GridOptions
impl Unpin for GridOptions
impl UnwindSafe for GridOptions
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