[][src]Struct pergola::MaxNum

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

This lattice definition recycles the Ord::max and Ord::cmp of its element type, as well as Bounded::min_value as its unit. This is similar to MaxDef except it works with signed types.

Trait Implementations

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

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

type T = M

Auto Trait Implementations

impl<M> RefUnwindSafe for MaxNum<M> where
    M: RefUnwindSafe

impl<M> Send for MaxNum<M> where
    M: Send

impl<M> Sync for MaxNum<M> where
    M: Sync

impl<M> Unpin for MaxNum<M> where
    M: Unpin

impl<M> UnwindSafe for MaxNum<M> where
    M: UnwindSafe

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.