pub enum KsgVariant {
Alg1,
Alg2,
}Expand description
Algorithm variant for KSG estimator.
Variants§
Alg1
Algorithm 1: Neighbors within radius epsilon.
Alg2
Algorithm 2: Neighbors within radius epsilon/2. More robust for independence tests.
Trait Implementations§
Source§impl Clone for KsgVariant
impl Clone for KsgVariant
Source§fn clone(&self) -> KsgVariant
fn clone(&self) -> KsgVariant
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 KsgVariant
impl Debug for KsgVariant
Source§impl PartialEq for KsgVariant
impl PartialEq for KsgVariant
impl Copy for KsgVariant
impl Eq for KsgVariant
impl StructuralPartialEq for KsgVariant
Auto Trait Implementations§
impl Freeze for KsgVariant
impl RefUnwindSafe for KsgVariant
impl Send for KsgVariant
impl Sync for KsgVariant
impl Unpin for KsgVariant
impl UnsafeUnpin for KsgVariant
impl UnwindSafe for KsgVariant
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