pub enum PolymorphicJoined3<Base: Model, C1: Model, C2: Model, C3: Model> {
Base(Base),
C1(C1),
C2(C2),
C3(C3),
}Expand description
Output of a joined-table inheritance polymorphic query with three child types.
Variants§
Trait Implementations§
Source§impl<Base: Clone + Model, C1: Clone + Model, C2: Clone + Model, C3: Clone + Model> Clone for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base: Clone + Model, C1: Clone + Model, C2: Clone + Model, C3: Clone + Model> Clone for PolymorphicJoined3<Base, C1, C2, C3>
Source§fn clone(&self) -> PolymorphicJoined3<Base, C1, C2, C3>
fn clone(&self) -> PolymorphicJoined3<Base, C1, C2, C3>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Base: Debug + Model, C1: Debug + Model, C2: Debug + Model, C3: Debug + Model> Debug for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base: Debug + Model, C1: Debug + Model, C2: Debug + Model, C3: Debug + Model> Debug for PolymorphicJoined3<Base, C1, C2, C3>
Source§impl<Base: PartialEq + Model, C1: PartialEq + Model, C2: PartialEq + Model, C3: PartialEq + Model> PartialEq for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base: PartialEq + Model, C1: PartialEq + Model, C2: PartialEq + Model, C3: PartialEq + Model> PartialEq for PolymorphicJoined3<Base, C1, C2, C3>
Source§fn eq(&self, other: &PolymorphicJoined3<Base, C1, C2, C3>) -> bool
fn eq(&self, other: &PolymorphicJoined3<Base, C1, C2, C3>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<Base: Model, C1: Model, C2: Model, C3: Model> StructuralPartialEq for PolymorphicJoined3<Base, C1, C2, C3>
Auto Trait Implementations§
impl<Base, C1, C2, C3> Freeze for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base, C1, C2, C3> RefUnwindSafe for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base, C1, C2, C3> Send for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base, C1, C2, C3> Sync for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base, C1, C2, C3> Unpin for PolymorphicJoined3<Base, C1, C2, C3>
impl<Base, C1, C2, C3> UnwindSafe for PolymorphicJoined3<Base, C1, C2, C3>
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: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).