Enum jj_lib::repo_path::RelativePathParseError
source · pub enum RelativePathParseError {
InvalidComponent {
component: Box<str>,
path: Box<Path>,
},
InvalidUtf8 {
path: Box<Path>,
},
}
Variants§
Trait Implementations§
source§impl Clone for RelativePathParseError
impl Clone for RelativePathParseError
source§fn clone(&self) -> RelativePathParseError
fn clone(&self) -> RelativePathParseError
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 RelativePathParseError
impl Debug for RelativePathParseError
source§impl Display for RelativePathParseError
impl Display for RelativePathParseError
source§impl Error for RelativePathParseError
impl Error for RelativePathParseError
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 for RelativePathParseError
impl PartialEq for RelativePathParseError
source§fn eq(&self, other: &RelativePathParseError) -> bool
fn eq(&self, other: &RelativePathParseError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RelativePathParseError
impl StructuralPartialEq for RelativePathParseError
Auto Trait Implementations§
impl Freeze for RelativePathParseError
impl RefUnwindSafe for RelativePathParseError
impl Send for RelativePathParseError
impl Sync for RelativePathParseError
impl Unpin for RelativePathParseError
impl UnwindSafe for RelativePathParseError
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