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§
Sourcefn replace_face(
&self,
original: &Handle<Face>,
replacement: Handle<Face>,
) -> Shell
fn replace_face( &self, original: &Handle<Face>, replacement: Handle<Face>, ) -> Shell
Update a face of the shell
Sourcefn remove_face(&self, handle: &Handle<Face>) -> Shell
fn remove_face(&self, handle: &Handle<Face>) -> Shell
Remove a face from the shell