pub trait IChildNode: ReferenceType {
// Provided method
fn remove(&self) { ... }
}Expand description
The ChildNode interface contains methods that are particular to Node
objects that can have a parent.
You most likely don’t want to use this directly; instead
you should use stdweb::traits::*;.
Provided 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.