pub struct LogLikelihood(/* private fields */);
Expand description
The log-likelihood of the data given an SFS.
This is always the natural logarithm.
Trait Implementations§
Source§impl Add for LogLikelihood
impl Add for LogLikelihood
Source§impl AddAssign for LogLikelihood
impl AddAssign for LogLikelihood
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moreSource§impl Clone for LogLikelihood
impl Clone for LogLikelihood
Source§fn clone(&self) -> LogLikelihood
fn clone(&self) -> LogLikelihood
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LogLikelihood
impl Debug for LogLikelihood
Source§impl From<LogLikelihood> for f64
impl From<LogLikelihood> for f64
Source§fn from(v: LogLikelihood) -> Self
fn from(v: LogLikelihood) -> Self
Converts to this type from the input type.
Source§impl From<f64> for LogLikelihood
impl From<f64> for LogLikelihood
Source§impl PartialEq for LogLikelihood
impl PartialEq for LogLikelihood
Source§impl PartialOrd for LogLikelihood
impl PartialOrd for LogLikelihood
Source§impl Sum for LogLikelihood
impl Sum for LogLikelihood
impl Copy for LogLikelihood
impl StructuralPartialEq for LogLikelihood
Auto Trait Implementations§
impl Freeze for LogLikelihood
impl RefUnwindSafe for LogLikelihood
impl Send for LogLikelihood
impl Sync for LogLikelihood
impl Unpin for LogLikelihood
impl UnwindSafe for LogLikelihood
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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