pub trait Sparsewhere
Self: Sized,{
// Required method
fn intersect(a: &[Self], b: &[Self]) -> Option<f64>;
}Expand description
Sparse provides trait methods for sparse vectors.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.