[][src]Trait skia_safe::region::Combine

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 { ... } }

Required methods

fn combine(a: &A, op: RegionOp, b: &B) -> Self

Loading content...

Provided methods

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

Loading content...

Implementors

Loading content...