pub struct FederatedDetailedRelationReport {
pub participants: Vec<FederatedParticipant>,
pub primary_worktree: Option<String>,
pub continuation_worktrees: Option<Vec<String>>,
pub primary: DetailedRelationReport,
pub rendezvous: Vec<FederatedRendezvous>,
pub truncated: bool,
pub reached_limits: Vec<GraphLimitKind>,
pub work: FederatedRelationWork,
}Expand description
Federated detailed-relation response on the existing relation route.
Fields§
§participants: Vec<FederatedParticipant>Ordered validated participants.
primary_worktree: Option<String>Worktree alias of the first-root result when aliases selected federation.
continuation_worktrees: Option<Vec<String>>Ordered aliases required to resume the primary continuation.
primary: DetailedRelationReportExisting detailed relation result anchored in the first root.
rendezvous: Vec<FederatedRendezvous>Exact typed cross-root external rendezvous evidence.
truncated: boolWhether primary traversal or cross-root rendezvous work was truncated.
reached_limits: Vec<GraphLimitKind>Stable aggregate limits reached by either stage.
work: FederatedRelationWorkExact aggregate work for this response.
Trait Implementations§
Source§impl Clone for FederatedDetailedRelationReport
impl Clone for FederatedDetailedRelationReport
Source§fn clone(&self) -> FederatedDetailedRelationReport
fn clone(&self) -> FederatedDetailedRelationReport
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 moreimpl Eq for FederatedDetailedRelationReport
Source§impl PartialEq for FederatedDetailedRelationReport
impl PartialEq for FederatedDetailedRelationReport
Source§fn eq(&self, other: &FederatedDetailedRelationReport) -> bool
fn eq(&self, other: &FederatedDetailedRelationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FederatedDetailedRelationReport
Auto Trait Implementations§
impl Freeze for FederatedDetailedRelationReport
impl RefUnwindSafe for FederatedDetailedRelationReport
impl Send for FederatedDetailedRelationReport
impl Sync for FederatedDetailedRelationReport
impl Unpin for FederatedDetailedRelationReport
impl UnsafeUnpin for FederatedDetailedRelationReport
impl UnwindSafe for FederatedDetailedRelationReport
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.