pub enum MissingFileKind {
Entrypoint,
SubPath,
Excluded,
}Expand description
The kind of file lookup that failed in a ResolverError::MissingFile.
Variants§
Entrypoint
The dependency’s entrypoint file (manifest entrypoint or default
index.wdl) was missing.
SubPath
The symbolic-import sub-path resolved to a file that does not exist.
Excluded
The path exists but the manifest’s exclude masks it.
Trait Implementations§
Source§impl Clone for MissingFileKind
impl Clone for MissingFileKind
Source§fn clone(&self) -> MissingFileKind
fn clone(&self) -> MissingFileKind
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 Copy for MissingFileKind
Source§impl Debug for MissingFileKind
impl Debug for MissingFileKind
impl Eq for MissingFileKind
Source§impl PartialEq for MissingFileKind
impl PartialEq for MissingFileKind
impl StructuralPartialEq for MissingFileKind
Auto Trait Implementations§
impl Freeze for MissingFileKind
impl RefUnwindSafe for MissingFileKind
impl Send for MissingFileKind
impl Sync for MissingFileKind
impl Unpin for MissingFileKind
impl UnsafeUnpin for MissingFileKind
impl UnwindSafe for MissingFileKind
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§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.