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>
impl<T, U> DirtyRect<T, U>
Sourcepub fn replace_with_empty(&mut self) -> Self
pub fn replace_with_empty(&mut self) -> Self
Replaces self with the empty rect and returns the old value.
Sourcepub fn intersection(&self, other: &Self) -> Self
pub fn intersection(&self, other: &Self) -> Self
Intersects the dirty rects.
Sourcepub fn to_subrect_of(&self, rect: &Box2D<T, U>) -> Box2D<T, U>
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<'de, T, U> Deserialize<'de> for DirtyRect<T, U>
impl<'de, T, U> Deserialize<'de> for DirtyRect<T, U>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more