[][src]Enum polyhorn_ui::styles::Inherited

pub enum Inherited<T> {
    Inherited,
    Specified(T),
}

Represents a property that can optionally be inherited from a parent element.

Variants

Inherited

If inherited, the value of this property is taken from the parent element (transitively). If none of the parent elements have specified a value for this property, the default value is used.

Specified(T)

If specified, this overrides any value from a parent element (transitively) for the same property.

Trait Implementations

impl<T: Clone> Clone for Inherited<T>[src]

impl<T: Copy> Copy for Inherited<T>[src]

impl<T: Debug> Debug for Inherited<T>[src]

impl<T> Default for Inherited<T>[src]

impl<T: Eq> Eq for Inherited<T>[src]

impl<T> FromStr for Inherited<T> where
    T: FromStr
[src]

type Err = ()

The associated error which can be returned from parsing.

impl<T: PartialEq> PartialEq<Inherited<T>> for Inherited<T>[src]

impl<T> StructuralEq for Inherited<T>[src]

impl<T> StructuralPartialEq for Inherited<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Inherited<T> where
    T: RefUnwindSafe

impl<T> Send for Inherited<T> where
    T: Send

impl<T> Sync for Inherited<T> where
    T: Sync

impl<T> Unpin for Inherited<T> where
    T: Unpin

impl<T> UnwindSafe for Inherited<T> where
    T: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[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.