pub struct ResolutionOutcome {
pub resolved: Resolved,
pub dependencies: Vec<CompactString>,
pub notes: Vec<CompactString>,
pub completeness: ResolutionCompleteness,
}Expand description
A resolution result and the filesystem paths consulted to produce it.
Fields§
§resolved: ResolvedThe classified resolution.
dependencies: Vec<CompactString>Absolute paths of found and missing dependencies consulted during resolution.
JavaScript outcomes retain both the configured root tsconfig-format file
and the config selected for an importing file, then follow the selected
config’s extends chain. Traversing every project reference is out of
scope for v1.
notes: Vec<CompactString>Non-fatal observations made while collecting resolution dependencies.
completeness: ResolutionCompletenessWhether the resolver fully modeled every relevant resolution path.
Trait Implementations§
Source§impl Clone for ResolutionOutcome
impl Clone for ResolutionOutcome
Source§fn clone(&self) -> ResolutionOutcome
fn clone(&self) -> ResolutionOutcome
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 Debug for ResolutionOutcome
impl Debug for ResolutionOutcome
impl Eq for ResolutionOutcome
Source§impl PartialEq for ResolutionOutcome
impl PartialEq for ResolutionOutcome
impl StructuralPartialEq for ResolutionOutcome
Auto Trait Implementations§
impl Freeze for ResolutionOutcome
impl RefUnwindSafe for ResolutionOutcome
impl Send for ResolutionOutcome
impl Sync for ResolutionOutcome
impl Unpin for ResolutionOutcome
impl UnsafeUnpin for ResolutionOutcome
impl UnwindSafe for ResolutionOutcome
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§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.