pub struct EstimatedUnionCardinalities { /* private fields */ }
Expand description
A struct for more readable code.
Implementations§
source§impl EstimatedUnionCardinalities
impl EstimatedUnionCardinalities
sourcepub fn get_left_cardinality(&self) -> f32
pub fn get_left_cardinality(&self) -> f32
Returns the estimated cardinality of the left set.
sourcepub fn get_right_cardinality(&self) -> f32
pub fn get_right_cardinality(&self) -> f32
Returns the estimated cardinality of the right set.
sourcepub fn get_union_cardinality(&self) -> f32
pub fn get_union_cardinality(&self) -> f32
Returns the estimated cardinality of the union of the two sets.
sourcepub fn get_intersection_cardinality(&self) -> f32
pub fn get_intersection_cardinality(&self) -> f32
Returns the estimated cardinality of the intersection of the two sets.
sourcepub fn get_jaccard_index(&self) -> f32
pub fn get_jaccard_index(&self) -> f32
Returns the estimated Jaccard index of the two sets.
Auto Trait Implementations§
impl RefUnwindSafe for EstimatedUnionCardinalities
impl Send for EstimatedUnionCardinalities
impl Sync for EstimatedUnionCardinalities
impl Unpin for EstimatedUnionCardinalities
impl UnwindSafe for EstimatedUnionCardinalities
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