pub enum ClipType {
None,
Intersection,
Union,
Difference,
Xor,
}Expand description
Boolean clip operation between subject and clip paths.
Subject 与 Clip 之间的裁剪运算类型。
Variants§
None
No clipping (placeholder). / 无裁剪(占位)。
Intersection
Intersection. / 交集。
Union
Union. / 并集。
Difference
Difference (subject minus clip). / 差集(Subject 减 Clip)。
Xor
Exclusive OR. / 异或。
Trait Implementations§
impl Copy for ClipType
impl Eq for ClipType
impl StructuralPartialEq for ClipType
Auto Trait Implementations§
impl Freeze for ClipType
impl RefUnwindSafe for ClipType
impl Send for ClipType
impl Sync for ClipType
impl Unpin for ClipType
impl UnsafeUnpin for ClipType
impl UnwindSafe for ClipType
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