pub struct Cell {
pub label: String,
pub color: Option<Color>,
pub font: Option<Font>,
pub font_color: Option<Color>,
pub font_size: Option<i32>,
pub selection_color: Option<Color>,
pub align: Option<Align>,
pub border_color: Option<Color>,
}
Fields§
§label: String
§color: Option<Color>
§font: Option<Font>
§font_color: Option<Color>
§font_size: Option<i32>
§selection_color: Option<Color>
§align: Option<Align>
§border_color: Option<Color>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cell
impl RefUnwindSafe for Cell
impl Send for Cell
impl Sync for Cell
impl Unpin for Cell
impl UnwindSafe for Cell
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