Skip to main content

ZSet

Trait ZSet 

Source
pub trait ZSet: IndexedZSet<Val = (), DynV = DynUnit> {
    // Required method
    fn weighted_count(&self) -> ZWeight;
}
Expand description

A statically typed wrapper around DynZSet.

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.

Implementors§

Source§

impl<Z> ZSet for Z
where Z: IndexedZSet<Val = (), DynV = DynUnit>,