Struct cont_arith_code::distribution::gaussian::WithReplacement
source · pub struct WithReplacement {
pub count: usize,
pub vec: Vec<i64>,
pub distr: Gaussian,
}
Expand description
Static (non-optimal) Gaussian model of a set of integers
Fields§
§count: usize
§vec: Vec<i64>
§distr: Gaussian
Implementations§
Trait Implementations§
source§impl Clone for WithReplacement
impl Clone for WithReplacement
source§fn clone(&self) -> WithReplacement
fn clone(&self) -> WithReplacement
Returns a copy 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 WithReplacement
impl Debug for WithReplacement
source§impl PartialEq for WithReplacement
impl PartialEq for WithReplacement
source§fn eq(&self, other: &WithReplacement) -> bool
fn eq(&self, other: &WithReplacement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for WithReplacement
impl PartialOrd for WithReplacement
source§fn partial_cmp(&self, other: &WithReplacement) -> Option<Ordering>
fn partial_cmp(&self, other: &WithReplacement) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl StructuralPartialEq for WithReplacement
Auto Trait Implementations§
impl Freeze for WithReplacement
impl RefUnwindSafe for WithReplacement
impl Send for WithReplacement
impl Sync for WithReplacement
impl Unpin for WithReplacement
impl UnwindSafe for WithReplacement
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.