pub enum BuildError {
Directory(PathBuf, Error),
File(PathBuf, Box<dyn Error>),
}Expand description
Error type for setup() operations
Variants§
Directory(PathBuf, Error)
Error creating a directory
File(PathBuf, Box<dyn Error>)
Error creating a file with default content
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildError
impl !RefUnwindSafe for BuildError
impl !Send for BuildError
impl !Sync for BuildError
impl Unpin for BuildError
impl !UnwindSafe for BuildError
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