[][src]Struct azul_core::style::HtmlCascadeInfo

pub struct HtmlCascadeInfo {
    pub index_in_parent: usize,
    pub is_last_child: bool,
    pub is_hovered_over: bool,
    pub is_focused: bool,
    pub is_active: bool,
}

Has all the necessary information about the style CSS path

Fields

index_in_parent: usizeis_last_child: boolis_hovered_over: boolis_focused: boolis_active: bool

Trait Implementations

impl Clone for HtmlCascadeInfo[src]

impl Copy for HtmlCascadeInfo[src]

impl Debug for HtmlCascadeInfo[src]

impl Eq for HtmlCascadeInfo[src]

impl Hash for HtmlCascadeInfo[src]

impl Ord for HtmlCascadeInfo[src]

impl PartialEq<HtmlCascadeInfo> for HtmlCascadeInfo[src]

impl PartialOrd<HtmlCascadeInfo> for HtmlCascadeInfo[src]

impl StructuralEq for HtmlCascadeInfo[src]

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