Skip to main content

Estimated

Trait Estimated 

Source
pub trait Estimated {
    // Required method
    fn estimate(&self, stats: &Stats<'_>) -> Estimate;
}

Required Methods§

Source

fn estimate(&self, stats: &Stats<'_>) -> Estimate

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Estimated for EdgeIndex

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl Estimated for GraphRecordAttribute

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl Estimated for GraphRecordValue

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl Estimated for bool

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl<T, S> Estimated for HashSet<T, S>

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl<T, const N: usize> Estimated for [T; N]

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl<T> Estimated for GrHashSet<T>

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Source§

impl<T> Estimated for Vec<T>

Source§

fn estimate(&self, _stats: &Stats<'_>) -> Estimate

Implementors§