struct Clip {
pub clip_bbox: Bbox,
pub strips: Box<[Strip]>,
pub fill_rule: Fill,
}
Expand description
A clip region.
Fields§
§clip_bbox: Bbox
The intersected bounding box after clip
strips: Box<[Strip]>
The rendered path in sparse strip representation
fill_rule: Fill
The fill rule used for this clip
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Clip
impl RefUnwindSafe for Clip
impl Send for Clip
impl Sync for Clip
impl Unpin for Clip
impl UnwindSafe for Clip
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