Trait UpdateShell

Source
pub trait UpdateShell {
    // Required methods
    fn replace_face(
        &self,
        original: &Handle<Face>,
        replacement: Handle<Face>,
    ) -> Shell;
    fn remove_face(&self, handle: &Handle<Face>) -> Shell;
}
Expand description

Update a Shell

Required Methods§

Source

fn replace_face( &self, original: &Handle<Face>, replacement: Handle<Face>, ) -> Shell

Update a face of the shell

Source

fn remove_face(&self, handle: &Handle<Face>) -> Shell

Remove a face from the shell

Implementors§