[][src]Struct pergola::MaxNum

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

This lattice definition recycles the Ord::max and Ord::cmp of its element type, as well as using Bounded::min_value as its unit. This is similar to MaxDef except it works with signed types: the default value of a signed type is still 0 and that's not a unit with respect to Ord::max in a lattice with negative numbers.

Trait Implementations

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

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

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

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

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

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

impl<M: DefTraits + MaxUnitMinValue> LatticeDef for MaxNum<M>[src]

type T = M

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<M> UnwindSafe for MaxNum<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.