pub struct SimilarityMatrixInfo {
pub matrix_dimensions: (usize, usize),
pub similarity_distribution: HashMap<String, f64>,
pub clustering_coefficient: f64,
pub matrix_sparsity: f64,
pub correlation_patterns: Vec<String>,
pub outlier_detection: Vec<String>,
pub similarity_threshold_recommendations: HashMap<String, f64>,
pub matrix_stability: f64,
pub distance_metric: String,
pub matrix_quality_score: f64,
}
Fields§
§matrix_dimensions: (usize, usize)
§similarity_distribution: HashMap<String, f64>
§clustering_coefficient: f64
§matrix_sparsity: f64
§correlation_patterns: Vec<String>
§outlier_detection: Vec<String>
§similarity_threshold_recommendations: HashMap<String, f64>
§matrix_stability: f64
§distance_metric: String
§matrix_quality_score: f64
Trait Implementations§
Source§impl Clone for SimilarityMatrixInfo
impl Clone for SimilarityMatrixInfo
Source§fn clone(&self) -> SimilarityMatrixInfo
fn clone(&self) -> SimilarityMatrixInfo
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 SimilarityMatrixInfo
impl Debug for SimilarityMatrixInfo
Source§impl PartialEq for SimilarityMatrixInfo
impl PartialEq for SimilarityMatrixInfo
Source§impl Serialize for SimilarityMatrixInfo
impl Serialize for SimilarityMatrixInfo
impl StructuralPartialEq for SimilarityMatrixInfo
Auto Trait Implementations§
impl Freeze for SimilarityMatrixInfo
impl RefUnwindSafe for SimilarityMatrixInfo
impl Send for SimilarityMatrixInfo
impl Sync for SimilarityMatrixInfo
impl Unpin for SimilarityMatrixInfo
impl UnwindSafe for SimilarityMatrixInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more