pub struct ShapedRun {
pub text: String,
pub char_range: Range<usize>,
pub byte_range: Range<usize>,
pub direction: BidiDirection,
pub font: FontMatch,
pub glyphs: Vec<GlyphInfo>,
}Fields§
§text: String§char_range: Range<usize>§byte_range: Range<usize>§direction: BidiDirection§font: FontMatch§glyphs: Vec<GlyphInfo>Trait Implementations§
impl StructuralPartialEq for ShapedRun
Auto Trait Implementations§
impl Freeze for ShapedRun
impl RefUnwindSafe for ShapedRun
impl Send for ShapedRun
impl Sync for ShapedRun
impl Unpin for ShapedRun
impl UnsafeUnpin for ShapedRun
impl UnwindSafe for ShapedRun
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