pub trait ReadNodeSet {
// Required method
fn contains(&self, node: NodeId) -> bool;
}Expand description
A set of usize with a known maximum value
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".