#[repr(u32)]pub enum CellWide {
Narrow = 0,
Wide = 1,
SpacerTail = 2,
SpacerHead = 3,
}Expand description
Cell wide property.
Describes the width behavior of a cell.
Variants§
Narrow = 0
Not a wide character, cell width 1.
Wide = 1
Wide character, cell width 2.
SpacerTail = 2
Spacer after wide character. Do not render.
SpacerHead = 3
Spacer at end of soft-wrapped line for a wide character.
Trait Implementations§
impl Copy for CellWide
impl Eq for CellWide
impl StructuralPartialEq for CellWide
Auto Trait Implementations§
impl Freeze for CellWide
impl RefUnwindSafe for CellWide
impl Send for CellWide
impl Sync for CellWide
impl Unpin for CellWide
impl UnsafeUnpin for CellWide
impl UnwindSafe for CellWide
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