pub enum Relation {
Collections,
Movies,
Shows,
Seasons,
Episodes,
}Expand description
Generated by sea-orm-macros
Variants§
Collections
Generated by sea-orm-macros
Movies
Generated by sea-orm-macros
Shows
Generated by sea-orm-macros
Seasons
Generated by sea-orm-macros
Episodes
Generated by sea-orm-macros
Trait Implementations§
Source§impl EntityLoaderWithParam for Relation
impl EntityLoaderWithParam for Relation
Source§fn into_with_param(self) -> (LoadTarget, Option<LoadTarget>)
fn into_with_param(self) -> (LoadTarget, Option<LoadTarget>)
Generated by sea-orm-macros
Source§impl IntoEnumIterator for Relation
impl IntoEnumIterator for Relation
type Iterator = RelationIter
fn iter() -> RelationIter ⓘ
Source§impl RelationTrait for Relation
impl RelationTrait for Relation
Source§fn def(&self) -> RelationDef
fn def(&self) -> RelationDef
Creates a
RelationDefimpl Copy for Relation
Auto Trait Implementations§
impl Freeze for Relation
impl RefUnwindSafe for Relation
impl Send for Relation
impl Sync for Relation
impl Unpin for Relation
impl UnwindSafe for Relation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more