pub enum PathOp {
Difference,
Intersect,
Union,
Xor,
ReverseDifference,
}Expand description
并集、交集、差集、异或等路径集合运算。Union, intersect, difference, xor, reverse difference.
Variants§
Difference
差集:path1 - path2 / Difference
Intersect
交集:path1 ∩ path2 / Intersection
Union
并集:path1 ∪ path2 / Union
Xor
异或:path1 ⊕ path2 / XOR
ReverseDifference
反向差集:path2 - path1 / Reverse difference
Trait Implementations§
impl Copy for PathOp
impl Eq for PathOp
impl StructuralPartialEq for PathOp
Auto Trait Implementations§
impl Freeze for PathOp
impl RefUnwindSafe for PathOp
impl Send for PathOp
impl Sync for PathOp
impl Unpin for PathOp
impl UnsafeUnpin for PathOp
impl UnwindSafe for PathOp
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