pub trait BinaryColorDrawTargetExt: Sized {
    // Required method
    fn invert_area<S>(&mut self, area: &S) -> ColorInvertingOverlay<'_, Self, S>
       where S: Clone + ContainsPoint;
}

Required Methods§

source

fn invert_area<S>(&mut self, area: &S) -> ColorInvertingOverlay<'_, Self, S>
where S: Clone + ContainsPoint,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> BinaryColorDrawTargetExt for T
where T: DrawTarget<Color = BinaryColor>,