[][src]Struct druid::Region

pub struct Region(_);

A region of a widget, generally used to describe what needs to be drawn.

This is currently just a single Rect, but may become more complicated in the future. Although this is just a wrapper around Rect, it has some different conventions. Mainly, "signed" invalidation regions don't make sense. Therefore, a rectangle with non-positive width or height is considered "empty", and all empty rectangles are treated the same.

Implementations

impl Region[src]

pub const EMPTY: Region[src]

An empty region.

pub fn to_rect(&self) -> Rect[src]

Returns the smallest Rect that encloses the entire region.

pub fn intersects(&self, other: Rect) -> bool[src]

Returns true if self intersects with other.

pub fn is_empty(&self) -> bool[src]

Returns true if this region is empty.

Trait Implementations

impl AddAssign<Vec2> for Region[src]

impl Clone for Region[src]

impl Debug for Region[src]

impl From<Rect> for Region[src]

impl SubAssign<Vec2> for Region[src]

Auto Trait Implementations

impl RefUnwindSafe for Region

impl Send for Region

impl Sync for Region

impl Unpin for Region

impl UnwindSafe for Region

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.