pub struct CellAttrs {
pub bold: bool,
pub italic: bool,
pub underline: UnderlineStyle,
pub underline_color: Option<Rgb>,
pub strikethrough: bool,
pub dim: bool,
pub blink: bool,
pub reverse: bool,
pub hidden: bool,
}Fields§
§bold: bool§italic: bool§underline: UnderlineStyle§underline_color: Option<Rgb>§strikethrough: bool§dim: bool§blink: bool§reverse: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for CellAttrs
impl<'de> Deserialize<'de> for CellAttrs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CellAttrs
impl RefUnwindSafe for CellAttrs
impl Send for CellAttrs
impl Sync for CellAttrs
impl Unpin for CellAttrs
impl UnsafeUnpin for CellAttrs
impl UnwindSafe for CellAttrs
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