pub struct GraphCacheStatus {
pub rejection: Option<CacheRejection>,
pub size_bytes: Option<u64>,
}Expand description
On-disk state of the persisted module graph for one project.
Fields§
§rejection: Option<CacheRejection>Why the persisted graph could not be loaded, or None when it decodes
into the current shape and belongs to this project root.
Whether a run would REUSE the graph also depends on the resolver options, entry points, and per-file fingerprints, and comparing those means running discovery and extraction, which doctor deliberately does not do.
size_bytes: Option<u64>Size of graph-cache.bin on disk, when the file exists.
Trait Implementations§
Source§impl Clone for GraphCacheStatus
impl Clone for GraphCacheStatus
impl Copy for GraphCacheStatus
Source§impl Debug for GraphCacheStatus
impl Debug for GraphCacheStatus
impl Eq for GraphCacheStatus
Source§impl PartialEq for GraphCacheStatus
impl PartialEq for GraphCacheStatus
impl StructuralPartialEq for GraphCacheStatus
Auto Trait Implementations§
impl Freeze for GraphCacheStatus
impl RefUnwindSafe for GraphCacheStatus
impl Send for GraphCacheStatus
impl Sync for GraphCacheStatus
impl Unpin for GraphCacheStatus
impl UnsafeUnpin for GraphCacheStatus
impl UnwindSafe for GraphCacheStatus
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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