#[non_exhaustive]pub struct ModuleResolutionCacheInvalidation {
pub key: ModuleResolutionCacheKey,
pub path_states: Vec<ModuleResolutionCandidatePathState>,
}Expand description
Cache invalidation inputs for a module-resolution candidate.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key: ModuleResolutionCacheKeyStable cache key for the module-resolution request and root set.
path_states: Vec<ModuleResolutionCandidatePathState>Candidate path existence states observed by the caller.
Trait Implementations§
Source§impl Clone for ModuleResolutionCacheInvalidation
impl Clone for ModuleResolutionCacheInvalidation
Source§fn clone(&self) -> ModuleResolutionCacheInvalidation
fn clone(&self) -> ModuleResolutionCacheInvalidation
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 moreSource§impl PartialEq for ModuleResolutionCacheInvalidation
impl PartialEq for ModuleResolutionCacheInvalidation
Source§fn eq(&self, other: &ModuleResolutionCacheInvalidation) -> bool
fn eq(&self, other: &ModuleResolutionCacheInvalidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ModuleResolutionCacheInvalidation
impl StructuralPartialEq for ModuleResolutionCacheInvalidation
Auto Trait Implementations§
impl Freeze for ModuleResolutionCacheInvalidation
impl RefUnwindSafe for ModuleResolutionCacheInvalidation
impl Send for ModuleResolutionCacheInvalidation
impl Sync for ModuleResolutionCacheInvalidation
impl Unpin for ModuleResolutionCacheInvalidation
impl UnsafeUnpin for ModuleResolutionCacheInvalidation
impl UnwindSafe for ModuleResolutionCacheInvalidation
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