pub struct OpinionSamples<V: MyFloat>where
Open01: Distribution<V>,{
pub initial_opinions: InitialOpinions<V>,
pub initial_base_rates: InitialBaseRates<V>,
pub condition: ConditionSamples<V>,
pub uncertainty: UncertaintySamples<V>,
}Fields§
§initial_opinions: InitialOpinions<V>§initial_base_rates: InitialBaseRates<V>§condition: ConditionSamples<V>§uncertainty: UncertaintySamples<V>Implementations§
Source§impl<V: MyFloat> OpinionSamples<V>where
Open01: Distribution<V>,
impl<V: MyFloat> OpinionSamples<V>where
Open01: Distribution<V>,
pub fn reset_to<R: Rng>(&self, ops: &mut MyOpinions<V>, rng: &mut R)where
Standard: Distribution<V>,
StandardNormal: Distribution<V>,
Exp1: Distribution<V>,
Open01: Distribution<V>,
Auto Trait Implementations§
impl<V> Freeze for OpinionSamples<V>where
V: Freeze,
impl<V> RefUnwindSafe for OpinionSamples<V>
impl<V> Send for OpinionSamples<V>
impl<V> Sync for OpinionSamples<V>
impl<V> Unpin for OpinionSamples<V>
impl<V> UnwindSafe for OpinionSamples<V>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more