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

pub struct All<C>(pub C);

Trait Implementations

impl<C: Clone> Clone for All<C>[src]

impl<T, C: Constraint<T>> Constraint<[T; 2]> for All<C>[src]

impl<T, C: Constraint<T>> Constraint<ArrayBase<OwnedRepr<T>, Dim<[usize; 1]>>> for All<C>[src]

impl<T, C: Constraint<T>> Constraint<ArrayBase<OwnedRepr<T>, Dim<[usize; 2]>>> for All<C>[src]

impl<T, C: Constraint<T>> Constraint<Vec<T>> for All<C>[src]

impl<C: Constraint<f64>> Constraint<f64> for All<C>[src]

impl<C: Constraint<i64>> Constraint<i64> for All<C>[src]

impl<C: Constraint<usize>> Constraint<usize> for All<C>[src]

impl<C: Copy> Copy for All<C>[src]

impl<C: Debug> Debug for All<C>[src]

impl<C: Display> Display for All<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for All<C> where
    C: RefUnwindSafe

impl<C> Send for All<C> where
    C: Send

impl<C> Sync for All<C> where
    C: Sync

impl<C> Unpin for All<C> where
    C: Unpin

impl<C> UnwindSafe for All<C> where
    C: 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>,