[][src]Struct pergola::MinNum

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

This is like MinOpt but for numeric (or specifically Bounded) types that have a numeric upper bound: it uses that as the unit rather than the additional "maximal value" tacked on in MinOpt. Best option for numeric lattices with join as minimum.

Trait Implementations

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

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

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

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

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

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

impl<M: DefTraits + Bounded> LatticeDef for MinNum<M>[src]

type T = M

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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