pub struct BufferCell {
pub character: char,
pub bold: bool,
pub underline: bool,
pub foreground_colour: Rgb24,
pub background_colour: Rgb24,
/* private fields */
}
Fields§
§character: char
§bold: bool
§underline: bool
§foreground_colour: Rgb24
§background_colour: Rgb24
Trait Implementations§
Source§impl Clone for BufferCell
impl Clone for BufferCell
Source§fn clone(&self) -> BufferCell
fn clone(&self) -> BufferCell
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 moreAuto Trait Implementations§
impl Freeze for BufferCell
impl RefUnwindSafe for BufferCell
impl Send for BufferCell
impl Sync for BufferCell
impl Unpin for BufferCell
impl UnwindSafe for BufferCell
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