Struct opensrdk_probability::independent_array_joint::IndependentArrayJoint[][src]

pub struct IndependentArrayJoint<D, T, U> where
    D: Distribution<T = T, U = U>,
    T: RandomVariable,
    U: RandomVariable
{ /* fields omitted */ }

Trait Implementations

impl<D, T, U, Rhs, URhs> BitAnd<Rhs> for IndependentArrayJoint<D, T, U> where
    D: Distribution<T = T, U = U>,
    T: RandomVariable,
    U: RandomVariable,
    Rhs: Distribution<T = U, U = URhs>,
    URhs: RandomVariable
[src]

type Output = DependentJoint<Self, Rhs, Vec<T>, U, URhs>

The resulting type after applying the & operator.

impl<D, T, U> Distribution for IndependentArrayJoint<D, T, U> where
    D: Distribution<T = T, U = U>,
    T: RandomVariable,
    U: RandomVariable
[src]

type T = Vec<T>

type U = U

impl<D, T, U, Rhs, TRhs> Mul<Rhs> for IndependentArrayJoint<D, T, U> where
    D: Distribution<T = T, U = U>,
    T: RandomVariable,
    U: RandomVariable,
    Rhs: Distribution<T = TRhs, U = U>,
    TRhs: RandomVariable
[src]

type Output = IndependentJoint<Self, Rhs, Vec<T>, TRhs, U>

The resulting type after applying the * operator.

Auto Trait Implementations

impl<D, T, U> RefUnwindSafe for IndependentArrayJoint<D, T, U> where
    D: RefUnwindSafe

impl<D, T, U> Send for IndependentArrayJoint<D, T, U> where
    D: Send

impl<D, T, U> Sync for IndependentArrayJoint<D, T, U> where
    D: Sync

impl<D, T, U> Unpin for IndependentArrayJoint<D, T, U> where
    D: Unpin

impl<D, T, U> UnwindSafe for IndependentArrayJoint<D, T, U> where
    D: 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<D, T1, U> ConvertableDistribution for D where
    U: RandomVariable,
    D: Distribution<T = T1, U = U>,
    T1: RandomVariable
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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>,