pub enum RelativePathNormalizeError {
UnsafeComponent,
}Expand description
Failures from pure relative-remainder normalization.
Variants§
UnsafeComponent
Remainder contained .., a root, or a prefix component.
Trait Implementations§
Source§impl Clone for RelativePathNormalizeError
impl Clone for RelativePathNormalizeError
Source§fn clone(&self) -> RelativePathNormalizeError
fn clone(&self) -> RelativePathNormalizeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RelativePathNormalizeError
Source§impl Debug for RelativePathNormalizeError
impl Debug for RelativePathNormalizeError
Source§impl Display for RelativePathNormalizeError
impl Display for RelativePathNormalizeError
impl Eq for RelativePathNormalizeError
Source§impl Error for RelativePathNormalizeError
impl Error for RelativePathNormalizeError
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()
impl StructuralPartialEq for RelativePathNormalizeError
Auto Trait Implementations§
impl Freeze for RelativePathNormalizeError
impl RefUnwindSafe for RelativePathNormalizeError
impl Send for RelativePathNormalizeError
impl Sync for RelativePathNormalizeError
impl Unpin for RelativePathNormalizeError
impl UnsafeUnpin for RelativePathNormalizeError
impl UnwindSafe for RelativePathNormalizeError
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