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

pub trait Linked {
    type FromEntity: EntityTrait;
    type ToEntity: EntityTrait;
    fn link(&self) -> Vec<LinkDef>;

    fn find_linked(&self) -> Select<Self::ToEntity> { ... }
}

Associated Types

Required methods

Provided methods

Implementors