pub enum LegacyAppPathStringError {
OpaqueFallback {
path: String,
},
IncompatibleConvention {
path: String,
convention: PathConvention,
},
InvalidNativePath {
path: String,
convention: Option<PathConvention>,
},
}Variants§
Trait Implementations§
Source§impl Debug for LegacyAppPathStringError
impl Debug for LegacyAppPathStringError
Source§impl Display for LegacyAppPathStringError
impl Display for LegacyAppPathStringError
impl Eq for LegacyAppPathStringError
Source§impl Error for LegacyAppPathStringError
impl Error for LegacyAppPathStringError
1.30.0 · 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 PartialEq for LegacyAppPathStringError
impl PartialEq for LegacyAppPathStringError
impl StructuralPartialEq for LegacyAppPathStringError
Auto Trait Implementations§
impl Freeze for LegacyAppPathStringError
impl RefUnwindSafe for LegacyAppPathStringError
impl Send for LegacyAppPathStringError
impl Sync for LegacyAppPathStringError
impl Unpin for LegacyAppPathStringError
impl UnsafeUnpin for LegacyAppPathStringError
impl UnwindSafe for LegacyAppPathStringError
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