[][src]Struct webrender_api::ComplexClipRegion

#[repr(C)]
pub struct ComplexClipRegion {
    pub rect: LayoutRect,
    pub radii: BorderRadius,
    pub mode: ClipMode,
}

Fields

rect: LayoutRect

The boundaries of the rectangle.

radii: BorderRadius

Border radii of this rectangle.

mode: ClipMode

Whether we are clipping inside or outside the region.

Methods

impl ComplexClipRegion[src]

pub fn new(rect: LayoutRect, radii: BorderRadius, mode: ClipMode) -> Self[src]

Create a new complex clip region.

impl ComplexClipRegion[src]

pub fn get_local_clip_rect(&self) -> Option<LayoutRect>[src]

Get a local clipping rect contributed by this clip region.

Trait Implementations

impl Clone for ComplexClipRegion[src]

impl Copy for ComplexClipRegion[src]

impl Debug for ComplexClipRegion[src]

impl Default for ComplexClipRegion[src]

impl<'de> Deserialize<'de> for ComplexClipRegion[src]

impl PartialEq<ComplexClipRegion> for ComplexClipRegion[src]

impl Peek for ComplexClipRegion[src]

impl Poke for ComplexClipRegion[src]

impl Serialize for ComplexClipRegion[src]

impl StructuralPartialEq for ComplexClipRegion[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

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.