ReplaceVertex

Trait ReplaceVertex 

Source
pub trait ReplaceVertex: IsObject + Sized {
    // Required method
    fn replace_vertex(
        &self,
        original: &Handle<Vertex>,
        replacement: Handle<Vertex>,
        core: &mut Core,
    ) -> ReplaceOutput<Self, Self::BareObject>;
}
Expand description

Replace a Vertex in the referenced object graph

See module documentation for more information.

Required Methods§

Source

fn replace_vertex( &self, original: &Handle<Vertex>, replacement: Handle<Vertex>, core: &mut Core, ) -> ReplaceOutput<Self, Self::BareObject>

Replace the vertex

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§