pub trait RelationTrait: Iterable + Debug + 'static {
    // Required method
    fn def(&self) -> RelationDef;
}
Expand description

Defines the relations of an Entity

Required Methods§

source

fn def(&self) -> RelationDef

The method to call

Object Safety§

This trait is not object safe.

Implementors§