[][src]Struct azul_css_parser::StyleBorderRadius

pub struct StyleBorderRadius {
    pub top_left: PixelValue,
    pub top_right: PixelValue,
    pub bottom_left: PixelValue,
    pub bottom_right: PixelValue,
}

Fields

top_left: PixelValuetop_right: PixelValuebottom_left: PixelValuebottom_right: PixelValue

Implementations

impl StyleBorderRadius[src]

pub const fn zero() -> Self[src]

pub const fn uniform(value: PixelValue) -> Self[src]

Trait Implementations

impl Clone for StyleBorderRadius[src]

impl Copy for StyleBorderRadius[src]

impl Debug for StyleBorderRadius[src]

impl Default for StyleBorderRadius[src]

impl Eq for StyleBorderRadius[src]

impl Hash for StyleBorderRadius[src]

impl Ord for StyleBorderRadius[src]

impl PartialEq<StyleBorderRadius> for StyleBorderRadius[src]

impl PartialOrd<StyleBorderRadius> for StyleBorderRadius[src]

impl StructuralEq for StyleBorderRadius[src]

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