pub enum DirtyRect<T: Copy, U> {
    All,
    Partial(Box2D<T, U>),
}
Expand description

The possible states of a Dirty rect.

This exists because people kept getting confused with Option<Box2D>.

Variants§

§

All

Everything is Dirty, equivalent to Partial(image_bounds)

§

Partial(Box2D<T, U>)

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>

Auto Trait Implementations§

§

impl<T, U> RefUnwindSafe for DirtyRect<T, U>where T: RefUnwindSafe, U: RefUnwindSafe,

§

impl<T, U> Send for DirtyRect<T, U>where T: Send, U: Send,

§

impl<T, U> Sync for DirtyRect<T, U>where T: Sync, U: Sync,

§

impl<T, U> Unpin for DirtyRect<T, U>where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for DirtyRect<T, U>where T: UnwindSafe, U: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,