struct McpCompactDetailedRelationNode<'a> {
selector: &'a EntitySelector,
purpose: &'a RelationPurpose,
coverage: Option<&'a [CoverageRecord]>,
}Expand description
Adapter-local compact detailed-relation node without stable-key duplication.
Fields§
§selector: &'a EntitySelectorExact selector accepted by later relation, summary, and slice calls.
purpose: &'a RelationPurposeAccepted, unavailable, or non-local purpose state.
coverage: Option<&'a [CoverageRecord]>Authoritative coverage rows for the selected local owner.
Trait Implementations§
Source§impl<'a> Debug for McpCompactDetailedRelationNode<'a>
impl<'a> Debug for McpCompactDetailedRelationNode<'a>
Source§impl<'a> From<&'a DetailedRelationNode> for McpCompactDetailedRelationNode<'a>
impl<'a> From<&'a DetailedRelationNode> for McpCompactDetailedRelationNode<'a>
Source§fn from(node: &'a DetailedRelationNode) -> Self
fn from(node: &'a DetailedRelationNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for McpCompactDetailedRelationNode<'a>
impl<'a> RefUnwindSafe for McpCompactDetailedRelationNode<'a>
impl<'a> Send for McpCompactDetailedRelationNode<'a>
impl<'a> Sync for McpCompactDetailedRelationNode<'a>
impl<'a> Unpin for McpCompactDetailedRelationNode<'a>
impl<'a> UnwindSafe for McpCompactDetailedRelationNode<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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