struct McpCompactFederatedDetailedRelationReport<'a> {
participants: &'a [FederatedParticipant],
primary: McpCompactDetailedRelationReport<'a>,
rendezvous: Option<&'a [FederatedRendezvous]>,
truncated: bool,
reached_limits: Option<&'a [GraphLimitKind]>,
work: &'a FederatedRelationWork,
}Expand description
Compact federated wrapper that preserves cross-root evidence and work.
Fields§
§participants: &'a [FederatedParticipant]Ordered validated participants.
primary: McpCompactDetailedRelationReport<'a>Compact first-root detailed relation page.
rendezvous: Option<&'a [FederatedRendezvous]>Exact cross-root external rendezvous evidence.
truncated: boolWhether primary or rendezvous work was truncated.
reached_limits: Option<&'a [GraphLimitKind]>Stable aggregate limits reached by either stage.
work: &'a FederatedRelationWorkExact aggregate work.
Implementations§
Source§impl<'a> McpCompactFederatedDetailedRelationReport<'a>
impl<'a> McpCompactFederatedDetailedRelationReport<'a>
Sourcefn new(
report: &'a FederatedDetailedRelationReport,
file: &'a str,
params: &'a AtlasSymbolRelationsParams,
) -> Self
fn new( report: &'a FederatedDetailedRelationReport, file: &'a str, params: &'a AtlasSymbolRelationsParams, ) -> Self
Project a federated page while preserving its exact continuation call.
Trait Implementations§
Source§impl<'a> Debug for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> Debug for McpCompactFederatedDetailedRelationReport<'a>
Auto Trait Implementations§
impl<'a> Freeze for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> RefUnwindSafe for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> Send for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> Sync for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> Unpin for McpCompactFederatedDetailedRelationReport<'a>
impl<'a> UnwindSafe for McpCompactFederatedDetailedRelationReport<'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