pub trait Replace<T> {
    fn replace(&mut self, object: Handle<T>) -> &mut Self;
}
Expand description

Recursively replace a (partial) object referenced by another partial object

Required Methods

Recursively replace the referenced object

Implementations on Foreign Types

Implementors