pub enum NormalizeUrlErrorKind {
NullBytes,
UrlParse(ParseError),
UnsupportedSshPattern {
url: String,
},
UnsupportedScheme,
}
Variants§
NullBytes
UrlParse(ParseError)
UnsupportedSshPattern
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
UnsupportedScheme
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NormalizeUrlErrorKind
impl RefUnwindSafe for NormalizeUrlErrorKind
impl Send for NormalizeUrlErrorKind
impl Sync for NormalizeUrlErrorKind
impl Unpin for NormalizeUrlErrorKind
impl UnwindSafe for NormalizeUrlErrorKind
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