[][src]Struct pergola::MaxDef

pub struct MaxDef<M: DefTraits> { /* fields omitted */ }

This lattice definition recycles the Ord::max and Ord::cmp of its element type, as well as using Default::default as its unit. In other words this is the "most normal" lattice over unsigned scalar, vector or string types, probably the one you want most of the time.

Trait Implementations

impl<M: Clone + DefTraits> Clone for MaxDef<M>[src]

impl<M: Debug + DefTraits> Debug for MaxDef<M>[src]

impl<M: Default + DefTraits> Default for MaxDef<M>[src]

impl<'de, M: DefTraits> Deserialize<'de> for MaxDef<M>[src]

impl<M: Eq + DefTraits> Eq for MaxDef<M>[src]

impl<M: Hash + DefTraits> Hash for MaxDef<M>[src]

impl<M: DefTraits + MaxUnitDefault> LatticeDef for MaxDef<M>[src]

type T = M

impl<M: Ord + DefTraits> Ord for MaxDef<M>[src]

impl<M: PartialEq + DefTraits> PartialEq<MaxDef<M>> for MaxDef<M>[src]

impl<M: PartialOrd + DefTraits> PartialOrd<MaxDef<M>> for MaxDef<M>[src]

impl<M: DefTraits> Serialize for MaxDef<M>[src]

impl<M: DefTraits> StructuralEq for MaxDef<M>[src]

impl<M: DefTraits> StructuralPartialEq for MaxDef<M>[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for MaxDef<M> where
    M: RefUnwindSafe
[src]

impl<M> Send for MaxDef<M> where
    M: Send
[src]

impl<M> Sync for MaxDef<M> where
    M: Sync
[src]

impl<M> Unpin for MaxDef<M> where
    M: Unpin
[src]

impl<M> UnwindSafe for MaxDef<M> where
    M: UnwindSafe
[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.