pub struct CellLayout {
pub row: usize,
pub column: usize,
pub blocks: Vec<BlockLayout>,
pub background_color: Option<[f32; 4]>,
}Fields§
§row: usize§column: usize§blocks: Vec<BlockLayout>§background_color: Option<[f32; 4]>Auto Trait Implementations§
impl Freeze for CellLayout
impl RefUnwindSafe for CellLayout
impl Send for CellLayout
impl Sync for CellLayout
impl Unpin for CellLayout
impl UnsafeUnpin for CellLayout
impl UnwindSafe for CellLayout
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