#[non_exhaustive]pub enum IncludeProjectDirectoryResolveError {
Unresolved,
}Expand description
A typed resolver failure that does not carry caller-controlled message text.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unresolved
Caller policy could not resolve the explicit declaration.
Trait Implementations§
Source§impl Clone for IncludeProjectDirectoryResolveError
impl Clone for IncludeProjectDirectoryResolveError
Source§fn clone(&self) -> IncludeProjectDirectoryResolveError
fn clone(&self) -> IncludeProjectDirectoryResolveError
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 IncludeProjectDirectoryResolveError
impl Eq for IncludeProjectDirectoryResolveError
impl StructuralPartialEq for IncludeProjectDirectoryResolveError
Auto Trait Implementations§
impl Freeze for IncludeProjectDirectoryResolveError
impl RefUnwindSafe for IncludeProjectDirectoryResolveError
impl Send for IncludeProjectDirectoryResolveError
impl Sync for IncludeProjectDirectoryResolveError
impl Unpin for IncludeProjectDirectoryResolveError
impl UnsafeUnpin for IncludeProjectDirectoryResolveError
impl UnwindSafe for IncludeProjectDirectoryResolveError
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