pub struct MissingPrefixError(/* private fields */);Expand description
The error returned when BasePath::try_new is given a path without a
prefix.
Trait Implementations§
Source§impl Clone for MissingPrefixError
impl Clone for MissingPrefixError
Source§fn clone(&self) -> MissingPrefixError
fn clone(&self) -> MissingPrefixError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MissingPrefixError
impl Debug for MissingPrefixError
Source§impl Display for MissingPrefixError
impl Display for MissingPrefixError
Source§impl Error for MissingPrefixError
impl Error for MissingPrefixError
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 MissingPrefixError
impl PartialEq for MissingPrefixError
impl StructuralPartialEq for MissingPrefixError
Auto Trait Implementations§
impl Freeze for MissingPrefixError
impl RefUnwindSafe for MissingPrefixError
impl Send for MissingPrefixError
impl Sync for MissingPrefixError
impl Unpin for MissingPrefixError
impl UnwindSafe for MissingPrefixError
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