pub struct GlyphCluster {
pub bounds: Rect,
pub range: Range<usize>,
pub direction: TextDirection,
}
Expand description
A glyph cluster in a line of laid out text.
Fields§
§bounds: Rect
The bounds of the cluster in local space.
range: Range<usize>
The byte range of the cluster in the original text.
direction: TextDirection
The direction of the cluster.
Trait Implementations§
Source§impl Clone for GlyphCluster
impl Clone for GlyphCluster
Source§fn clone(&self) -> GlyphCluster
fn clone(&self) -> GlyphCluster
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GlyphCluster
impl RefUnwindSafe for GlyphCluster
impl Send for GlyphCluster
impl Sync for GlyphCluster
impl Unpin for GlyphCluster
impl UnwindSafe for GlyphCluster
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