Layout

Trait Layout 

Source
pub trait Layout: RawLayout {
    // Required method
    fn new(id: EdgeId<Self::Index>, vertices: Self::Store) -> Self;
}
Expand description

Layout extends the behaviour of a RawLayout to include various constructors and other utilitarian methods.

Required Methods§

Source

fn new(id: EdgeId<Self::Index>, vertices: Self::Store) -> Self

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§

Source§

impl<S, K, Idx> Layout for Link<S, K, Idx>
where S: Domain<Idx>, Idx: RawIndex, K: GraphType,