Trait Combine
skia_safe::region
pub trait Combine<A, B>: Sized { fn combine(a: &A, op: RegionOp, b: &B) -> Self; fn difference(a: &A, b: &B) -> Self { ... } fn intersect(a: &A, b: &B) -> Self { ... } fn xor(a: &A, b: &B) -> Self { ... } fn union(a: &A, b: &B) -> Self { ... } fn reverse_difference(a: &A, b: &B) -> Self { ... } fn replace(a: &A, b: &B) -> Self { ... } }
fn combine(a: &A, op: RegionOp, b: &B) -> Self
fn difference(a: &A, b: &B) -> Self
fn intersect(a: &A, b: &B) -> Self
fn xor(a: &A, b: &B) -> Self
fn union(a: &A, b: &B) -> Self
fn reverse_difference(a: &A, b: &B) -> Self
fn replace(a: &A, b: &B) -> Self