pub struct TermCell {
pub ch: char,
pub fg: Color,
pub bg: Color,
pub modifiers: Modifier,
}Expand description
Terminal cell with character and styling
Fields§
§ch: charCharacter
fg: ColorForeground color
bg: ColorBackground color
modifiers: ModifierText modifiers
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TermCell
impl RefUnwindSafe for TermCell
impl Send for TermCell
impl Sync for TermCell
impl Unpin for TermCell
impl UnsafeUnpin for TermCell
impl UnwindSafe for TermCell
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