pub type BlobDirtyRect = DirtyRect<i32, LayoutPixel>;

Aliased Type§

enum BlobDirtyRect {
    All,
    Partial(Box2D<i32, LayoutPixel>),
}

Variants§

§

All

Everything is Dirty, equivalent to Partial(image_bounds)

§

Partial(Box2D<i32, LayoutPixel>)

Some specific amount is dirty

Implementations§

source§

impl<T, U> DirtyRect<T, U>where T: Copy + Clone + PartialOrd + PartialEq + Add<T, Output = T> + Sub<T, Output = T> + Zero,

source

pub fn empty() -> Self

Creates an empty DirtyRect (indicating nothing is invalid)

source

pub fn is_empty(&self) -> bool

Returns whether the dirty rect is empty

source

pub fn replace_with_empty(&mut self) -> Self

Replaces self with the empty rect and returns the old value.

source

pub fn map<F>(self, func: F) -> Selfwhere F: FnOnce(Box2D<T, U>) -> Box2D<T, U>,

Maps over the contents of Partial.

source

pub fn union(&self, other: &Self) -> Self

Unions the dirty rects.

source

pub fn intersection(&self, other: &Self) -> Self

Intersects the dirty rects.

source

pub fn to_subrect_of(&self, rect: &Box2D<T, U>) -> Box2D<T, U>

Converts the dirty rect into a subrect of the given one via intersection.

Trait Implementations§

source§

impl<T: Copy, U> Clone for DirtyRect<T, U>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Copy, U: Debug> Debug for DirtyRect<T, U>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, T, U> Deserialize<'de> for DirtyRect<T, U>where T: Deserialize<'de> + Copy, U: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T: Copy, U> From<Box2D<T, U>> for DirtyRect<T, U>

source§

fn from(rect: Box2D<T, U>) -> Self

Converts to this type from the input type.
source§

impl<T, U> Serialize for DirtyRect<T, U>where T: Serialize + Copy, U: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Copy, U> Copy for DirtyRect<T, U>