Trait IChildNode

Source
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::*;.

(JavaScript docs)

Provided Methods§

Source

fn remove(&self)

The ChildNode.remove() method removes the object from the tree it belongs to.

(JavaScript docs)

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.

Implementors§