pub struct CurrentSize(/* private fields */);Expand description
The current size of a deme.
Unlike demes::DemeSize, this type
allows for values of 0.0, which means
that there are no individuals in the
deme at the current time.
Trait Implementations§
Source§impl Clone for CurrentSize
impl Clone for CurrentSize
Source§fn clone(&self) -> CurrentSize
fn clone(&self) -> CurrentSize
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 CurrentSize
impl Debug for CurrentSize
Source§impl PartialEq<CurrentSize> for f64
impl PartialEq<CurrentSize> for f64
Source§impl PartialEq<f64> for CurrentSize
impl PartialEq<f64> for CurrentSize
Source§impl PartialEq for CurrentSize
impl PartialEq for CurrentSize
Source§impl PartialOrd<CurrentSize> for f64
impl PartialOrd<CurrentSize> for f64
Source§impl PartialOrd<f64> for CurrentSize
impl PartialOrd<f64> for CurrentSize
Source§impl PartialOrd for CurrentSize
impl PartialOrd for CurrentSize
Source§impl TryFrom<DemeSize> for CurrentSize
impl TryFrom<DemeSize> for CurrentSize
Source§impl TryFrom<f64> for CurrentSize
impl TryFrom<f64> for CurrentSize
impl Copy for CurrentSize
impl StructuralPartialEq for CurrentSize
Auto Trait Implementations§
impl Freeze for CurrentSize
impl RefUnwindSafe for CurrentSize
impl Send for CurrentSize
impl Sync for CurrentSize
impl Unpin for CurrentSize
impl UnwindSafe for CurrentSize
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