pub struct BiEntropyResult {
pub bien: f64,
pub tbien: f64,
pub derivative_entropies: Vec<f64>,
pub num_derivatives: usize,
pub is_valid: bool,
}Fields§
§bien: f64§tbien: f64§derivative_entropies: Vec<f64>§num_derivatives: usize§is_valid: boolTrait Implementations§
Source§impl Clone for BiEntropyResult
impl Clone for BiEntropyResult
Source§fn clone(&self) -> BiEntropyResult
fn clone(&self) -> BiEntropyResult
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 BiEntropyResult
impl Debug for BiEntropyResult
Auto Trait Implementations§
impl Freeze for BiEntropyResult
impl RefUnwindSafe for BiEntropyResult
impl Send for BiEntropyResult
impl Sync for BiEntropyResult
impl Unpin for BiEntropyResult
impl UnsafeUnpin for BiEntropyResult
impl UnwindSafe for BiEntropyResult
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