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§
source§impl PartialEq for Shaping
impl PartialEq for Shaping
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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