pub enum IriSError {
IriParseError {
str: String,
err: String,
},
IriParseErrorWithBase {
str: String,
base: String,
error: String,
},
IriResolveError {
err: Box<String>,
base: Box<IriS>,
other: Box<IriS>,
},
JoinError {
err: Box<String>,
current: Box<IriS>,
str: Box<String>,
},
ReqwestClientCreation {
error: String,
},
UrlParseError {
str: String,
error: String,
},
ReqwestError {
error: String,
},
ReqwestTextError {
error: String,
},
ConvertingFileUrlToPath {
url: String,
},
IOErrorFile {
path: String,
url: String,
error: String,
},
}
Variants§
IriParseError
IriParseErrorWithBase
IriResolveError
JoinError
ReqwestClientCreation
UrlParseError
ReqwestError
ReqwestTextError
ConvertingFileUrlToPath
IOErrorFile
Trait Implementations§
Source§impl Error for IriSError
impl Error for IriSError
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()
Auto Trait Implementations§
impl Freeze for IriSError
impl RefUnwindSafe for IriSError
impl Send for IriSError
impl Sync for IriSError
impl Unpin for IriSError
impl UnwindSafe for IriSError
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