pub struct CrossRepoPersistResult {
pub packages_registered: usize,
pub unresolved_refs_stored: usize,
pub forward_edges_created: usize,
pub backward_edges_created: usize,
pub endpoints_detected: usize,
pub client_calls_detected: usize,
}Expand description
Counts of what was persisted by persist_cross_repo_data.
Fields§
§packages_registered: usize§unresolved_refs_stored: usize§forward_edges_created: usize§backward_edges_created: usize§endpoints_detected: usize§client_calls_detected: usizeTrait Implementations§
Source§impl Debug for CrossRepoPersistResult
impl Debug for CrossRepoPersistResult
Source§impl Default for CrossRepoPersistResult
impl Default for CrossRepoPersistResult
Source§fn default() -> CrossRepoPersistResult
fn default() -> CrossRepoPersistResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CrossRepoPersistResult
impl RefUnwindSafe for CrossRepoPersistResult
impl Send for CrossRepoPersistResult
impl Sync for CrossRepoPersistResult
impl Unpin for CrossRepoPersistResult
impl UnsafeUnpin for CrossRepoPersistResult
impl UnwindSafe for CrossRepoPersistResult
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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