pub trait UpdateHalfEdge {
// Required methods
fn update_curve<T>(
&self,
update: impl FnOnce(&Handle<Curve>, &mut Core) -> T,
core: &mut Core,
) -> Self
where T: Insert<Inserted = Handle<Curve>>;
fn update_start_vertex<T>(
&self,
update: impl FnOnce(&Handle<Vertex>, &mut Core) -> T,
core: &mut Core,
) -> Self
where T: Insert<Inserted = Handle<Vertex>>;
}
Expand description
Update a HalfEdge
Required Methods§
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.