pub struct Table {
pub position: String,
pub columns: usize,
pub rows: usize,
pub bgcolor: Option<Color>,
pub cells: HashMap<(usize, usize), TableCell>,
}Expand description
A table overlay: a fixed grid of cells anchored to a chart position.
Fields§
§position: String§columns: usize§rows: usize§bgcolor: Option<Color>§cells: HashMap<(usize, usize), TableCell>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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