[][src]Struct rstat::params::constraints::Or

pub struct Or<C1, C2>(pub (C1, C2));

Trait Implementations

impl<C1: Clone, C2: Clone> Clone for Or<C1, C2>[src]

impl<T, C1: Constraint<T>, C2: Constraint<T>> Constraint<T> for Or<C1, C2>[src]

impl<C1: Copy, C2: Copy> Copy for Or<C1, C2>[src]

impl<C1: Debug, C2: Debug> Debug for Or<C1, C2>[src]

impl<C1: Display, C2: Display> Display for Or<C1, C2>[src]

Auto Trait Implementations

impl<C1, C2> RefUnwindSafe for Or<C1, C2> where
    C1: RefUnwindSafe,
    C2: RefUnwindSafe

impl<C1, C2> Send for Or<C1, C2> where
    C1: Send,
    C2: Send

impl<C1, C2> Sync for Or<C1, C2> where
    C1: Sync,
    C2: Sync

impl<C1, C2> Unpin for Or<C1, C2> where
    C1: Unpin,
    C2: Unpin

impl<C1, C2> UnwindSafe for Or<C1, C2> where
    C1: UnwindSafe,
    C2: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,