[][src]Struct azul_core::app_resources::PrimitiveFlags

pub struct PrimitiveFlags {
    pub is_backface_visible: bool,
    pub is_scrollbar_container: bool,
    pub is_scrollbar_thumb: bool,
}

Fields

is_backface_visible: bool

The CSS backface-visibility property (yes, it can be really granular)

is_scrollbar_container: bool

If set, this primitive represents a scroll bar container

is_scrollbar_thumb: bool

If set, this primitive represents a scroll bar thumb

Trait Implementations

impl Clone for PrimitiveFlags[src]

impl Copy for PrimitiveFlags[src]

impl Debug for PrimitiveFlags[src]

impl Eq for PrimitiveFlags[src]

impl Hash for PrimitiveFlags[src]

impl Ord for PrimitiveFlags[src]

impl PartialEq<PrimitiveFlags> for PrimitiveFlags[src]

impl PartialOrd<PrimitiveFlags> for PrimitiveFlags[src]

impl StructuralEq for PrimitiveFlags[src]

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