enum ErrorKind {
InvalidUriChar,
InvalidScheme,
InvalidAuthority,
InvalidPort,
InvalidFormat,
SchemeMissing,
AuthorityMissing,
PathAndQueryMissing,
TooLong,
Empty,
SchemeTooLong,
}
Variants§
InvalidUriChar
InvalidScheme
InvalidAuthority
InvalidPort
InvalidFormat
SchemeMissing
AuthorityMissing
PathAndQueryMissing
TooLong
Empty
SchemeTooLong
Trait Implementations§
source§impl From<ErrorKind> for InvalidUri
impl From<ErrorKind> for InvalidUri
source§fn from(src: ErrorKind) -> InvalidUri
fn from(src: ErrorKind) -> InvalidUri
Converts to this type from the input type.
source§impl From<ErrorKind> for InvalidUriParts
impl From<ErrorKind> for InvalidUriParts
source§fn from(src: ErrorKind) -> InvalidUriParts
fn from(src: ErrorKind) -> InvalidUriParts
Converts to this type from the input type.
source§impl PartialEq for ErrorKind
impl PartialEq for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
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