logo
pub trait Linked {
    type FromEntity: EntityTrait;
    type ToEntity: EntityTrait;

    fn link(&self) -> Vec<LinkDef>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; fn find_linked(&self) -> Select<Self::ToEntity> { ... } }
Expand description

A Trait for links between Entities

Required Associated Types

Required Methods

Link for an Entity

Provided Methods

Find all the Entities that are linked to the Entity

Implementors