pub enum Primitive {
Fill {
curve: Arc<Curve>,
fill: FillRule,
paint: Paint,
},
Stroke {
curve: Arc<Curve>,
stroke: Stroke,
paint: Paint,
},
Paragraph {
paragraph: Paragraph,
bounds: Rect,
rect: Rect,
},
Layer {
primitives: Arc<Vec<Primitive>>,
transform: Affine,
mask: Option<Mask>,
view: Option<ViewId>,
},
}
Expand description
A primitive that can be drawn on a canvas.
Variants§
Fill
A filled curve.
Fields
Stroke
A stroked curve.
Fields
Paragraph
A paragraph on rich text.
Fields
Layer
A layer that can be transformed and masked.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Primitive
Auto Trait Implementations§
impl Freeze for Primitive
impl RefUnwindSafe for Primitive
impl Send for Primitive
impl Sync for Primitive
impl Unpin for Primitive
impl UnwindSafe for Primitive
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