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