pub enum CellDisplay {
Block,
HalfBlock,
Value,
Custom,
}Expand description
Cell display mode
Variants§
Block
Block character (█)
HalfBlock
Half block for higher resolution
Value
Show numeric value
Custom
Custom character
Trait Implementations§
Source§impl Clone for CellDisplay
impl Clone for CellDisplay
Source§fn clone(&self) -> CellDisplay
fn clone(&self) -> CellDisplay
Returns a duplicate 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 CellDisplay
impl Debug for CellDisplay
Source§impl Default for CellDisplay
impl Default for CellDisplay
Source§fn default() -> CellDisplay
fn default() -> CellDisplay
Returns the “default value” for a type. Read more
Source§impl PartialEq for CellDisplay
impl PartialEq for CellDisplay
impl Copy for CellDisplay
impl Eq for CellDisplay
impl StructuralPartialEq for CellDisplay
Auto Trait Implementations§
impl Freeze for CellDisplay
impl RefUnwindSafe for CellDisplay
impl Send for CellDisplay
impl Sync for CellDisplay
impl Unpin for CellDisplay
impl UnsafeUnpin for CellDisplay
impl UnwindSafe for CellDisplay
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