Struct normpath::error::MissingPrefixBufError
source · pub struct MissingPrefixBufError(/* private fields */);
Expand description
The error returned when BasePathBuf::try_new
is given a path without a
prefix.
Implementations§
Trait Implementations§
source§impl Clone for MissingPrefixBufError
impl Clone for MissingPrefixBufError
source§fn clone(&self) -> MissingPrefixBufError
fn clone(&self) -> MissingPrefixBufError
Returns a copy 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 MissingPrefixBufError
impl Debug for MissingPrefixBufError
source§impl Display for MissingPrefixBufError
impl Display for MissingPrefixBufError
source§impl Error for MissingPrefixBufError
impl Error for MissingPrefixBufError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<MissingPrefixBufError> for MissingPrefixBufError
impl PartialEq<MissingPrefixBufError> for MissingPrefixBufError
source§fn eq(&self, other: &MissingPrefixBufError) -> bool
fn eq(&self, other: &MissingPrefixBufError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MissingPrefixBufError
Auto Trait Implementations§
impl RefUnwindSafe for MissingPrefixBufError
impl Send for MissingPrefixBufError
impl Sync for MissingPrefixBufError
impl Unpin for MissingPrefixBufError
impl UnwindSafe for MissingPrefixBufError
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