pub enum FetchError {
InvalidTarget(String),
Failed(String),
}Variants§
InvalidTarget(String)
Target path doesn’t contain a valid project.
Failed(String)
Something else went wrong. The String carries details for debugging.
Trait Implementations§
Source§impl Debug for FetchError
impl Debug for FetchError
Auto Trait Implementations§
impl Freeze for FetchError
impl RefUnwindSafe for FetchError
impl Send for FetchError
impl Sync for FetchError
impl Unpin for FetchError
impl UnsafeUnpin for FetchError
impl UnwindSafe for FetchError
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