[][src]Struct webrender_api::StackingContext

pub struct StackingContext {
    pub transform_style: TransformStyle,
    pub mix_blend_mode: MixBlendMode,
    pub clip_id: Option<ClipId>,
    pub raster_space: RasterSpace,
    pub cache_tiles: bool,
    pub is_backdrop_root: bool,
}

Fields

transform_style: TransformStylemix_blend_mode: MixBlendModeclip_id: Option<ClipId>raster_space: RasterSpacecache_tiles: bool

True if picture caching should be used on this stacking context.

is_backdrop_root: bool

True if this stacking context is a backdrop root.

Trait Implementations

impl Clone for StackingContext[src]

impl Copy for StackingContext[src]

impl Debug for StackingContext[src]

impl Default for StackingContext[src]

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

impl PartialEq<StackingContext> for StackingContext[src]

impl Peek for StackingContext[src]

impl Poke for StackingContext[src]

impl Serialize for StackingContext[src]

impl StructuralPartialEq for StackingContext[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.