pub trait Refs: Clone + Debug {
// Required methods
fn empty() -> Self;
fn is_empty(&self) -> bool;
fn clear(&mut self);
}
Expand description
References among nodes.
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.