pub enum FindManifestError {
CannotFindManifest,
CannotOpenManifest(PathBuf),
TomlError(Error),
}Expand description
Possible error that might happen while looking for the project manifest.
Variants§
CannotFindManifest
No manifest exists in the directory where the search was started, nor in any of its parent directories.
CannotOpenManifest(PathBuf)
Cannot open the manifest.
TomlError(Error)
Cannot parse the manifest.
Trait Implementations§
Source§impl Debug for FindManifestError
impl Debug for FindManifestError
Auto Trait Implementations§
impl Freeze for FindManifestError
impl RefUnwindSafe for FindManifestError
impl Send for FindManifestError
impl Sync for FindManifestError
impl Unpin for FindManifestError
impl UnwindSafe for FindManifestError
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