Enum tui_widgets::big_text::PixelSize
source · pub enum PixelSize {
Full,
HalfHeight,
HalfWidth,
Quadrant,
ThirdHeight,
Sextant,
}Variants§
Full
A pixel from the 8x8 font is represented by a full character cell in the terminal.
HalfHeight
A pixel from the 8x8 font is represented by a half (upper/lower) character cell in the terminal.
HalfWidth
A pixel from the 8x8 font is represented by a half (left/right) character cell in the terminal.
Quadrant
A pixel from the 8x8 font is represented by a quadrant of a character cell in the terminal.
ThirdHeight
A pixel from the 8x8 font is represented by a third (top/middle/bottom) of a character
cell in the terminal.
Note: depending on how the used terminal renders characters, the generated text with
this PixelSize might look very strange.
Sextant
A pixel from the 8x8 font is represented by a sextant of a character cell in the
terminal.
Note: depending on how the used terminal renders characters, the generated text with
this PixelSize might look very strange.
Trait Implementations§
source§impl PartialEq for PixelSize
impl PartialEq for PixelSize
impl Copy for PixelSize
impl Eq for PixelSize
impl StructuralPartialEq for PixelSize
Auto Trait Implementations§
impl Freeze for PixelSize
impl RefUnwindSafe for PixelSize
impl Send for PixelSize
impl Sync for PixelSize
impl Unpin for PixelSize
impl UnwindSafe for PixelSize
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more