pub enum CollectionKind {
Entity,
SecondaryIndex,
Denormalized,
Counters,
Standalone,
}Variants§
Entity
Primary collection owning an entity (FK target for its brand).
SecondaryIndex
Derived collection synchronized from a source (hook/task).
Denormalized
Same entity duplicated for another access path.
Counters
Recomputable counters/aggregates.
Standalone
Not related to other collections.
Trait Implementations§
Source§impl Clone for CollectionKind
impl Clone for CollectionKind
Source§fn clone(&self) -> CollectionKind
fn clone(&self) -> CollectionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CollectionKind
Source§impl Debug for CollectionKind
impl Debug for CollectionKind
impl Eq for CollectionKind
Source§impl PartialEq for CollectionKind
impl PartialEq for CollectionKind
Source§fn eq(&self, other: &CollectionKind) -> bool
fn eq(&self, other: &CollectionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CollectionKind
impl Serialize for CollectionKind
impl StructuralPartialEq for CollectionKind
Auto Trait Implementations§
impl Freeze for CollectionKind
impl RefUnwindSafe for CollectionKind
impl Send for CollectionKind
impl Sync for CollectionKind
impl Unpin for CollectionKind
impl UnsafeUnpin for CollectionKind
impl UnwindSafe for CollectionKind
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