Skip to main content

RelationTarget

Trait RelationTarget 

Source
pub trait RelationTarget {
    type Target;
}

Required Associated Types§

Implementors§

Source§

impl<Child, Parent> RelationTarget for BelongsTo<Child, Parent>

Source§

type Target = Parent

Source§

impl<Parent, Child> RelationTarget for HasMany<Parent, Child>

Source§

type Target = Child

Source§

impl<Parent, Child, Through> RelationTarget for ManyToMany<Parent, Child, Through>

Source§

type Target = Child