pub struct TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,{ /* private fields */ }Implementations
sourceimpl<D, T, U, V> TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
impl<D, T, U, V> TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
Trait Implementations
sourceimpl<D, T, U, V, Rhs, URhs> BitAnd<Rhs> for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
Rhs: Distribution<Value = (U, V), Condition = URhs>,
URhs: RandomVariable,
impl<D, T, U, V, Rhs, URhs> BitAnd<Rhs> for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
Rhs: Distribution<Value = (U, V), Condition = URhs>,
URhs: RandomVariable,
type Output = DependentJoint<TransformedDistribution<D, T, U, V>, Rhs, (T, V), (U, V), URhs>
type Output = DependentJoint<TransformedDistribution<D, T, U, V>, Rhs, (T, V), (U, V), URhs>
The resulting type after applying the
& operator.sourceimpl<D: Clone, T: Clone, U: Clone, V: Clone> Clone for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
impl<D: Clone, T: Clone, U: Clone, V: Clone> Clone for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
sourcefn clone(&self) -> TransformedDistribution<D, T, U, V>
fn clone(&self) -> TransformedDistribution<D, T, U, V>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<D: Debug, T: Debug, U: Debug, V: Debug> Debug for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
impl<D: Debug, T: Debug, U: Debug, V: Debug> Debug for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: Clone + Debug + Send + Sync,
V: RandomVariable,
sourceimpl<D, T, U, V> Distribution for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
impl<D, T, U, V> Distribution for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
sourceimpl<D, T, U, V, Rhs, TRhs> Mul<Rhs> for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
Rhs: Distribution<Value = TRhs, Condition = (U, V)>,
TRhs: RandomVariable,
impl<D, T, U, V, Rhs, TRhs> Mul<Rhs> for TransformedDistribution<D, T, U, V>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
Rhs: Distribution<Value = TRhs, Condition = (U, V)>,
TRhs: RandomVariable,
type Output = IndependentJoint<TransformedDistribution<D, T, U, V>, Rhs, (T, V), TRhs, (U, V)>
type Output = IndependentJoint<TransformedDistribution<D, T, U, V>, Rhs, (T, V), TRhs, (U, V)>
The resulting type after applying the
* operator.sourceimpl<D, T, U, V> SampleableDistribution for TransformedDistribution<D, T, U, V>where
D: SampleableDistribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
impl<D, T, U, V> SampleableDistribution for TransformedDistribution<D, T, U, V>where
D: SampleableDistribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
V: RandomVariable,
Auto Trait Implementations
impl<D, T, U, V> RefUnwindSafe for TransformedDistribution<D, T, U, V>where
D: RefUnwindSafe,
V: RefUnwindSafe,
impl<D, T, U, V> Send for TransformedDistribution<D, T, U, V>
impl<D, T, U, V> Sync for TransformedDistribution<D, T, U, V>
impl<D, T, U, V> Unpin for TransformedDistribution<D, T, U, V>where
D: Unpin,
V: Unpin,
impl<D, T, U, V> UnwindSafe for TransformedDistribution<D, T, U, V>where
D: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more