pub struct CellLayoutParams {
pub row: usize,
pub column: usize,
pub blocks: Vec<BlockLayoutParams>,
pub background_color: Option<[f32; 4]>,
}Expand description
Parameters for a single table cell.
Fields§
§row: usize§column: usize§blocks: Vec<BlockLayoutParams>§background_color: Option<[f32; 4]>Auto Trait Implementations§
impl Freeze for CellLayoutParams
impl RefUnwindSafe for CellLayoutParams
impl Send for CellLayoutParams
impl Sync for CellLayoutParams
impl Unpin for CellLayoutParams
impl UnsafeUnpin for CellLayoutParams
impl UnwindSafe for CellLayoutParams
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