pub struct LoadFailure {
pub paths: Option<LoadPaths>,
pub error: LoadError,
}Fields§
§paths: Option<LoadPaths>§error: LoadErrorTrait Implementations§
Source§impl Debug for LoadFailure
impl Debug for LoadFailure
Source§impl Display for LoadFailure
impl Display for LoadFailure
Source§impl Error for LoadFailure
impl Error for LoadFailure
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 From<LoadFailure> for AuthorizeError
impl From<LoadFailure> for AuthorizeError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for CertifyError
impl From<LoadFailure> for CertifyError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for CheckError
impl From<LoadFailure> for CheckError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for FixError
impl From<LoadFailure> for FixError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for InstallHooksError
impl From<LoadFailure> for InstallHooksError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for LocalPolicyError
impl From<LoadFailure> for LocalPolicyError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Source§impl From<LoadFailure> for StatusError
impl From<LoadFailure> for StatusError
Source§fn from(source: LoadFailure) -> Self
fn from(source: LoadFailure) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoadFailure
impl !RefUnwindSafe for LoadFailure
impl Send for LoadFailure
impl Sync for LoadFailure
impl Unpin for LoadFailure
impl UnsafeUnpin for LoadFailure
impl !UnwindSafe for LoadFailure
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