[][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

UnsetSet(P, T)

Trait Implementations

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

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

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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> Sync for Setting<T, P> where
    P: Sync,
    T: Sync

Blanket Implementations

impl<T, U> Into 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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.