pub enum RepositoryGraphRelationQuery {
Outbound {
source: GraphEntityKey,
},
Inbound {
target: GraphEntityKey,
},
Family {
relation: GraphRelationKind,
},
}Expand description
Closed relation lookup shapes owned by normalized graph storage.
Variants§
Outbound
Relations whose source is one exact stable entity.
Fields
§
source: GraphEntityKeyExact project-qualified source key.
Inbound
Relations whose resolved or external target is one exact stable entity.
Fields
§
target: GraphEntityKeyExact project-qualified target key.
Family
Relations in one typed legacy or extended family.
Fields
§
relation: GraphRelationKindExact relation family.
Trait Implementations§
Source§impl Clone for RepositoryGraphRelationQuery
impl Clone for RepositoryGraphRelationQuery
Source§fn clone(&self) -> RepositoryGraphRelationQuery
fn clone(&self) -> RepositoryGraphRelationQuery
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 RepositoryGraphRelationQuery
impl Debug for RepositoryGraphRelationQuery
Source§impl PartialEq for RepositoryGraphRelationQuery
impl PartialEq for RepositoryGraphRelationQuery
Source§fn eq(&self, other: &RepositoryGraphRelationQuery) -> bool
fn eq(&self, other: &RepositoryGraphRelationQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RepositoryGraphRelationQuery
impl StructuralPartialEq for RepositoryGraphRelationQuery
Auto Trait Implementations§
impl Freeze for RepositoryGraphRelationQuery
impl RefUnwindSafe for RepositoryGraphRelationQuery
impl Send for RepositoryGraphRelationQuery
impl Sync for RepositoryGraphRelationQuery
impl Unpin for RepositoryGraphRelationQuery
impl UnwindSafe for RepositoryGraphRelationQuery
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more