pub enum NestedRelationKind {
ForwardObject,
ReverseArray,
}Expand description
Direction and shape of nested relation expansion.
Variants§
ForwardObject
Parent row references a single related row (object expansion).
ReverseArray
Related rows reference parent row (array expansion).
Trait Implementations§
Source§impl Clone for NestedRelationKind
impl Clone for NestedRelationKind
Source§fn clone(&self) -> NestedRelationKind
fn clone(&self) -> NestedRelationKind
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 Debug for NestedRelationKind
impl Debug for NestedRelationKind
Source§impl PartialEq for NestedRelationKind
impl PartialEq for NestedRelationKind
impl Copy for NestedRelationKind
impl Eq for NestedRelationKind
impl StructuralPartialEq for NestedRelationKind
Auto Trait Implementations§
impl Freeze for NestedRelationKind
impl RefUnwindSafe for NestedRelationKind
impl Send for NestedRelationKind
impl Sync for NestedRelationKind
impl Unpin for NestedRelationKind
impl UnsafeUnpin for NestedRelationKind
impl UnwindSafe for NestedRelationKind
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