pub struct TextEngineConfig {
pub bidi: BidiMode,
pub line_breaking: LineBreaking,
pub justification: Justification,
pub font_substitution: FontSubstitution,
pub script_itemization: ScriptItemization,
pub text_decoration_mode: TextDecorationMode,
pub word_hyphenation: WordHyphenation,
pub default_font: FontDescriptor,
}Fields§
§bidi: BidiMode§line_breaking: LineBreaking§justification: Justification§font_substitution: FontSubstitution§script_itemization: ScriptItemization§text_decoration_mode: TextDecorationMode§word_hyphenation: WordHyphenation§default_font: FontDescriptorTrait Implementations§
Source§impl Clone for TextEngineConfig
impl Clone for TextEngineConfig
Source§fn clone(&self) -> TextEngineConfig
fn clone(&self) -> TextEngineConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TextEngineConfig
impl Debug for TextEngineConfig
Source§impl Default for TextEngineConfig
impl Default for TextEngineConfig
Source§impl PartialEq for TextEngineConfig
impl PartialEq for TextEngineConfig
Source§fn eq(&self, other: &TextEngineConfig) -> bool
fn eq(&self, other: &TextEngineConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextEngineConfig
Auto Trait Implementations§
impl Freeze for TextEngineConfig
impl RefUnwindSafe for TextEngineConfig
impl Send for TextEngineConfig
impl Sync for TextEngineConfig
impl Unpin for TextEngineConfig
impl UnsafeUnpin for TextEngineConfig
impl UnwindSafe for TextEngineConfig
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