pub struct RenderableCell {
pub line: Line,
pub column: Column,
pub inner: RenderableCellContent,
pub fg: Rgb,
pub bg: Rgb,
pub bg_alpha: f32,
pub flags: Flags,
}
Fields§
§line: Line
A Display line (not necessarily an Active line)
column: Column
§inner: RenderableCellContent
§fg: Rgb
§bg: Rgb
§bg_alpha: f32
§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
Source§impl From<RenderableCell> for Point<Line>
impl From<RenderableCell> for Point<Line>
Source§fn from(cell: RenderableCell) -> Self
fn from(cell: RenderableCell) -> Self
Converts to this type from the input type.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)