[][src]Enum syncat_stylesheet::Setting

pub enum Setting<T, P: Copy + Ord = (usize, usize, usize)> {
    Unset,
    Set(P, T),
}

An assignment of a value to a style, with a priority, or Unset if the value is not set.

Variants

Unset
Set(P, T)

Trait Implementations

impl<T, P: Copy + Ord> Default for Setting<T, P>[src]

impl<T: Clone, P: Clone + Copy + Ord> Clone for Setting<T, P>[src]

impl<T: Copy, P: Copy + Ord> Copy for Setting<T, P>[src]

impl<T: Debug, P: Debug + Copy + Ord> Debug for Setting<T, P>[src]

Auto Trait Implementations

impl<T, P> Send for Setting<T, P> where
    P: Send,
    T: Send

impl<T, P> Unpin for Setting<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> Sync for Setting<T, P> where
    P: Sync,
    T: Sync

impl<T, P> UnwindSafe for Setting<T, P> where
    P: UnwindSafe,
    T: UnwindSafe

impl<T, P> RefUnwindSafe for Setting<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]