Trait sea_orm::entity::Linked[][src]

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

Associated Types

Required methods

Link for an Entity

Provided methods

Find all the Entities that are linked to the Entity

Implementors