pub enum SymlinkLibsError {
JniLibsCreationFailed(Error),
SymlinkFailed(SymlinkLibError),
RequiredLibsFailed(RequiredLibsError),
LibcxxSharedPathFailed(MissingToolError),
LibNotFound {
path: PathBuf,
},
}
Variants§
JniLibsCreationFailed(Error)
SymlinkFailed(SymlinkLibError)
RequiredLibsFailed(RequiredLibsError)
LibNotFound
Trait Implementations§
source§impl Debug for SymlinkLibsError
impl Debug for SymlinkLibsError
source§impl Display for SymlinkLibsError
impl Display for SymlinkLibsError
source§impl Error for SymlinkLibsError
impl Error for SymlinkLibsError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl Reportable for SymlinkLibsError
impl Reportable for SymlinkLibsError
Auto Trait Implementations§
impl Freeze for SymlinkLibsError
impl !RefUnwindSafe for SymlinkLibsError
impl Send for SymlinkLibsError
impl Sync for SymlinkLibsError
impl Unpin for SymlinkLibsError
impl !UnwindSafe for SymlinkLibsError
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