Skip to main content

ReadNodeSet

Trait ReadNodeSet 

Source
pub trait ReadNodeSet {
    // Required method
    fn contains(&self, node: NodeId) -> bool;
}
Expand description

A set of usize with a known maximum value

Required Methods§

Source

fn contains(&self, node: NodeId) -> bool

Dyn Compatibility§

This trait is dyn compatible.

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

Implementations on Foreign Types§

Source§

impl ReadNodeSet for BitVec

Source§

fn contains(&self, node: usize) -> bool

Source§

impl<S: BuildHasher> ReadNodeSet for HashSet<usize, S>

Source§

fn contains(&self, node: usize) -> bool

Implementors§