pub struct CorrelationDimResult {
pub dimension: f64,
pub r_squared: f64,
pub embedding_dim_used: usize,
pub num_points_used: usize,
pub is_valid: bool,
}Fields§
§dimension: f64§r_squared: f64§embedding_dim_used: usize§num_points_used: usize§is_valid: boolTrait Implementations§
Source§impl Clone for CorrelationDimResult
impl Clone for CorrelationDimResult
Source§fn clone(&self) -> CorrelationDimResult
fn clone(&self) -> CorrelationDimResult
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 CorrelationDimResult
impl Debug for CorrelationDimResult
Auto Trait Implementations§
impl Freeze for CorrelationDimResult
impl RefUnwindSafe for CorrelationDimResult
impl Send for CorrelationDimResult
impl Sync for CorrelationDimResult
impl Unpin for CorrelationDimResult
impl UnsafeUnpin for CorrelationDimResult
impl UnwindSafe for CorrelationDimResult
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