Skip to main content

Edge

Trait Edge 

Source
pub trait Edge<N> {
    // Required method
    fn target(&self) -> N;
}

Required Methods§

Source

fn target(&self) -> N

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<N: Copy> Edge<N> for N