pub struct Outline {
pub bounds: Rect,
pub curves: Vec<OutlineCurve>,
}
Expand description
A “raw” collection of outline curves for a glyph, unscaled & unpositioned.
Fields§
§bounds: Rect
Unscaled bounding box.
curves: Vec<OutlineCurve>
Unscaled & unpositioned outline curves.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Outline
impl RefUnwindSafe for Outline
impl Send for Outline
impl Sync for Outline
impl Unpin for Outline
impl UnwindSafe for Outline
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