[][src]Struct azul_webrender_api::BoxShadowDisplayItem

pub struct BoxShadowDisplayItem {
    pub common: CommonItemProperties,
    pub box_bounds: LayoutRect,
    pub offset: LayoutVector2D,
    pub color: ColorF,
    pub blur_radius: f32,
    pub spread_radius: f32,
    pub border_radius: BorderRadius,
    pub clip_mode: BoxShadowClipMode,
}

Fields

common: CommonItemPropertiesbox_bounds: LayoutRectoffset: LayoutVector2Dcolor: ColorFblur_radius: f32spread_radius: f32border_radius: BorderRadiusclip_mode: BoxShadowClipMode

Trait Implementations

impl Clone for BoxShadowDisplayItem[src]

impl Copy for BoxShadowDisplayItem[src]

impl Debug for BoxShadowDisplayItem[src]

impl Default for BoxShadowDisplayItem[src]

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

impl PartialEq<BoxShadowDisplayItem> for BoxShadowDisplayItem[src]

impl Peek for BoxShadowDisplayItem[src]

impl Poke for BoxShadowDisplayItem[src]

impl Serialize for BoxShadowDisplayItem[src]

impl StructuralPartialEq for BoxShadowDisplayItem[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: for<'de> 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.