pub struct ShapedText {
pub analysis: UnicodeAnalysis,
pub font: FontMatch,
pub mode: ShapingMode,
pub runs: Vec<ShapedRun>,
}Fields§
§analysis: UnicodeAnalysis§font: FontMatch§mode: ShapingMode§runs: Vec<ShapedRun>Trait Implementations§
Source§impl Clone for ShapedText
impl Clone for ShapedText
Source§fn clone(&self) -> ShapedText
fn clone(&self) -> ShapedText
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 ShapedText
impl Debug for ShapedText
Source§impl Default for ShapedText
impl Default for ShapedText
Source§fn default() -> ShapedText
fn default() -> ShapedText
Returns the “default value” for a type. Read more
Source§impl PartialEq for ShapedText
impl PartialEq for ShapedText
Source§fn eq(&self, other: &ShapedText) -> bool
fn eq(&self, other: &ShapedText) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ShapedText
Auto Trait Implementations§
impl Freeze for ShapedText
impl RefUnwindSafe for ShapedText
impl Send for ShapedText
impl Sync for ShapedText
impl Unpin for ShapedText
impl UnsafeUnpin for ShapedText
impl UnwindSafe for ShapedText
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