pub struct DetailedRelationNode {
pub entity: GraphEntity,
pub classification: Option<ContentClassification>,
pub content_selection: Option<ContentSelection>,
pub purpose: RelationPurpose,
pub coverage: Vec<CoverageRecord>,
}Expand description
One endpoint with authoritative purpose state projected at response time.
Fields§
§entity: GraphEntityTyped generation-bound graph entity.
classification: Option<ContentClassification>Persisted role of the local file endpoint, when the entity has one.
content_selection: Option<ContentSelection>Explicit selection captured for exact follow-up calls, or legacy omission.
purpose: RelationPurposeAccepted owner purpose, unavailable local purpose, or non-local state.
coverage: Vec<CoverageRecord>Authoritative graph coverage for this node’s local owning path.
Trait Implementations§
Source§impl Clone for DetailedRelationNode
impl Clone for DetailedRelationNode
Source§fn clone(&self) -> DetailedRelationNode
fn clone(&self) -> DetailedRelationNode
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 DetailedRelationNode
impl Debug for DetailedRelationNode
impl Eq for DetailedRelationNode
Source§impl PartialEq for DetailedRelationNode
impl PartialEq for DetailedRelationNode
Source§fn eq(&self, other: &DetailedRelationNode) -> bool
fn eq(&self, other: &DetailedRelationNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DetailedRelationNode
impl Serialize for DetailedRelationNode
impl StructuralPartialEq for DetailedRelationNode
Auto Trait Implementations§
impl Freeze for DetailedRelationNode
impl RefUnwindSafe for DetailedRelationNode
impl Send for DetailedRelationNode
impl Sync for DetailedRelationNode
impl Unpin for DetailedRelationNode
impl UnsafeUnpin for DetailedRelationNode
impl UnwindSafe for DetailedRelationNode
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.