pub struct Chances {
pub winner: Distribution,
pub runner_up: Distribution,
pub loser: Distribution,
}
Expand description
All the relevant chances for each camel.
I.e. which camel is winning, which is losing, which is the runner up.
Fields§
§winner: Distribution
Distribution of the chance to win.
runner_up: Distribution
Distribution of the chance to be runner up.
loser: Distribution
Distribution of the chance to lose.
Auto Trait Implementations§
impl Freeze for Chances
impl RefUnwindSafe for Chances
impl Send for Chances
impl Sync for Chances
impl Unpin for Chances
impl UnwindSafe for Chances
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