Skip to main content

AdjSetEdge

Trait AdjSetEdge 

Source
pub trait AdjSetEdge<V>: 'static + GraphItem
where V: AdjSetVertex,
{ // Required methods fn new(u: V, v: V) -> Self; fn source(&self) -> V; fn target(&self) -> V; }

Required Methods§

Source

fn new(u: V, v: V) -> Self

Source

fn source(&self) -> V

Source

fn target(&self) -> V

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§