pub struct RepositoryGraphRelationRow {
pub relation: LogicalRelation,
pub source: GraphEntity,
pub target: Option<GraphEntity>,
pub document_unresolved_reason: Option<DocumentTargetUnresolvedReason>,
}Expand description
One normalized relation with the endpoint entities already hydrated.
Fields§
§relation: LogicalRelationFully reconstructed normalized relation.
source: GraphEntityExact source entity named by the relation.
target: Option<GraphEntity>Retained resolved or external target, when the relation has one.
document_unresolved_reason: Option<DocumentTargetUnresolvedReason>Closed reason retained only for an unresolved documents relation.
Trait Implementations§
Source§impl Clone for RepositoryGraphRelationRow
impl Clone for RepositoryGraphRelationRow
Source§fn clone(&self) -> RepositoryGraphRelationRow
fn clone(&self) -> RepositoryGraphRelationRow
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 moreSource§impl Debug for RepositoryGraphRelationRow
impl Debug for RepositoryGraphRelationRow
impl Eq for RepositoryGraphRelationRow
Source§impl PartialEq for RepositoryGraphRelationRow
impl PartialEq for RepositoryGraphRelationRow
Source§fn eq(&self, other: &RepositoryGraphRelationRow) -> bool
fn eq(&self, other: &RepositoryGraphRelationRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RepositoryGraphRelationRow
Auto Trait Implementations§
impl Freeze for RepositoryGraphRelationRow
impl RefUnwindSafe for RepositoryGraphRelationRow
impl Send for RepositoryGraphRelationRow
impl Sync for RepositoryGraphRelationRow
impl Unpin for RepositoryGraphRelationRow
impl UnsafeUnpin for RepositoryGraphRelationRow
impl UnwindSafe for RepositoryGraphRelationRow
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.