pub struct RowCell {
pub glyph: char,
pub color: CanvasColor,
}Expand description
A single cell in a rendered row: a character glyph and its canvas color.
Fields§
§glyph: charThe Unicode character for this cell.
color: CanvasColorThe composited canvas color for this cell.
Trait Implementations§
impl Copy for RowCell
impl Eq for RowCell
impl StructuralPartialEq for RowCell
Auto Trait Implementations§
impl Freeze for RowCell
impl RefUnwindSafe for RowCell
impl Send for RowCell
impl Sync for RowCell
impl Unpin for RowCell
impl UnsafeUnpin for RowCell
impl UnwindSafe for RowCell
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