pub enum AccessParadigm {
Relational,
Text,
Vector,
Graph,
Hybrid,
CrossParadigm,
}Expand description
Physical domain used to produce one relation before relational joins.
Variants§
Trait Implementations§
Source§impl Clone for AccessParadigm
impl Clone for AccessParadigm
Source§fn clone(&self) -> AccessParadigm
fn clone(&self) -> AccessParadigm
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 AccessParadigm
Source§impl Debug for AccessParadigm
impl Debug for AccessParadigm
Source§impl Default for AccessParadigm
impl Default for AccessParadigm
Source§fn default() -> AccessParadigm
fn default() -> AccessParadigm
Returns the “default value” for a type. Read more
impl Eq for AccessParadigm
Source§impl PartialEq for AccessParadigm
impl PartialEq for AccessParadigm
impl StructuralPartialEq for AccessParadigm
Auto Trait Implementations§
impl Freeze for AccessParadigm
impl RefUnwindSafe for AccessParadigm
impl Send for AccessParadigm
impl Sync for AccessParadigm
impl Unpin for AccessParadigm
impl UnsafeUnpin for AccessParadigm
impl UnwindSafe for AccessParadigm
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
impl<T> ErasedDestructor for Twhere
T: 'static,
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