pub enum RRDCachedClientError {
Io(Error),
Parsing(String),
UnexpectedResponse(i64, String),
InvalidCreateDataSerie(String),
InvalidDataSourceName(String),
InvalidBatchUpdate(String),
BatchUpdateErrorResponse(String, Vec<String>),
SystemTimeError,
InvalidFetch(String),
InvalidFetchHeaderLine(String),
}
Variants§
Io(Error)
Parsing(String)
UnexpectedResponse(i64, String)
InvalidCreateDataSerie(String)
InvalidDataSourceName(String)
InvalidBatchUpdate(String)
BatchUpdateErrorResponse(String, Vec<String>)
SystemTimeError
InvalidFetch(String)
InvalidFetchHeaderLine(String)
Trait Implementations§
Source§impl Debug for RRDCachedClientError
impl Debug for RRDCachedClientError
Source§impl Display for RRDCachedClientError
impl Display for RRDCachedClientError
Source§impl Error for RRDCachedClientError
impl Error for RRDCachedClientError
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 RRDCachedClientError
impl !RefUnwindSafe for RRDCachedClientError
impl Send for RRDCachedClientError
impl Sync for RRDCachedClientError
impl Unpin for RRDCachedClientError
impl !UnwindSafe for RRDCachedClientError
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