pub struct RenderableCell {
pub line: Line,
pub column: Column,
pub chars: [char; 6],
pub fg: Color,
pub bg: Color,
pub flags: Flags,
}
Fields§
§line: Line
A Display line (not necessarily an Active line)
column: Column
§chars: [char; 6]
§fg: Color
§bg: Color
§flags: Flags
Trait Implementations§
Source§impl Clone for RenderableCell
impl Clone for RenderableCell
Source§fn clone(&self) -> RenderableCell
fn clone(&self) -> RenderableCell
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RenderableCell
impl Debug for RenderableCell
impl Copy for RenderableCell
Auto Trait Implementations§
impl Freeze for RenderableCell
impl RefUnwindSafe for RenderableCell
impl Send for RenderableCell
impl Sync for RenderableCell
impl Unpin for RenderableCell
impl UnwindSafe for RenderableCell
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