Enum cosmic_text::Shaping
source · pub enum Shaping {
Basic,
Advanced,
}
Expand description
The shaping strategy of some text.
Variants§
Basic
Basic shaping with no font fallback.
This shaping strategy is very cheap, but it will not display complex scripts properly nor try to find missing glyphs in your system fonts.
You should use this strategy when you have complete control of the text and the font you are displaying in your application.
Advanced
Advanced text shaping and font fallback.
You will need to enable this strategy if the text contains a complex script, the font used needs it, and/or multiple fonts in your system may be needed to display all of the glyphs.
Trait Implementations§
impl Copy for Shaping
impl Eq for Shaping
impl StructuralPartialEq for Shaping
Auto Trait Implementations§
impl Freeze for Shaping
impl RefUnwindSafe for Shaping
impl Send for Shaping
impl Sync for Shaping
impl Unpin for Shaping
impl UnwindSafe for Shaping
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
)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>
Converts
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>
Converts
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