EntityLoaderWithParam

Trait EntityLoaderWithParam 

Source
pub trait EntityLoaderWithParam {
    // Required method
    fn into_with_param(self) -> (LoadTarget, Option<LoadTarget>);
}
Expand description

Parameters for EntityLoader

Required Methods§

Source

fn into_with_param(self) -> (LoadTarget, Option<LoadTarget>)

Generated by sea-orm-macros

Implementations on Foreign Types§

Source§

impl<R, S> EntityLoaderWithParam for (R, S)
where R: EntityTrait + Related<S>, Entity: Related<R>, S: EntityTrait,

Source§

impl<R, S> EntityLoaderWithParam for EntityLoaderWithSelf<R, S>

Source§

impl<R, S, SR> EntityLoaderWithParam for EntityLoaderWithSelfRev<R, SR>
where R: EntityTrait + RelatedSelfVia<S>, Entity: Related<R>, S: EntityTrait, SR: EntityReverse<Entity = S>,

Implementors§