pub enum IncludeProjectDirectoryResolution {
Resolved(PathBuf),
Deferred,
}Expand description
The successful result of resolving an explicit include project directory.
Variants§
Resolved(PathBuf)
The caller authorized this effective directory.
Deferred
The caller intentionally deferred this declaration without producing an error.
Trait Implementations§
Source§impl Clone for IncludeProjectDirectoryResolution
impl Clone for IncludeProjectDirectoryResolution
Source§fn clone(&self) -> IncludeProjectDirectoryResolution
fn clone(&self) -> IncludeProjectDirectoryResolution
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 Eq for IncludeProjectDirectoryResolution
impl StructuralPartialEq for IncludeProjectDirectoryResolution
Auto Trait Implementations§
impl Freeze for IncludeProjectDirectoryResolution
impl RefUnwindSafe for IncludeProjectDirectoryResolution
impl Send for IncludeProjectDirectoryResolution
impl Sync for IncludeProjectDirectoryResolution
impl Unpin for IncludeProjectDirectoryResolution
impl UnsafeUnpin for IncludeProjectDirectoryResolution
impl UnwindSafe for IncludeProjectDirectoryResolution
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