pub enum Recorded {
Shape(Rect),
Other(DrawPrimitive),
}Expand description
What ShapeRecorder::push_primitive did with a primitive.
Variants§
Shape(Rect)
A shape was recorded; its coverage rect.
Other(DrawPrimitive)
The primitive is not a shape and is handed back.
Auto Trait Implementations§
impl !Send for Recorded
impl !Sync for Recorded
impl Freeze for Recorded
impl RefUnwindSafe for Recorded
impl Unpin for Recorded
impl UnsafeUnpin for Recorded
impl UnwindSafe for Recorded
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