pub trait VertexId {
// Required method
fn get_id(&self) -> Cow<'_, str>;
}Expand description
The ID of a vertex.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".