pub trait BaseNodeTrait:
NodeAsAny
+ Debug
+ Deref<Target = Base>
+ DerefMut
+ Send {
// Required method
fn clone_box(&self) -> Node;
}Expand description
A set of useful methods that is possible to auto-implement.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".