pub enum RevokeError {
ServiceNotFound(String),
ConfigError(String),
ConnectionError(String),
SerializationError(Error),
IoError(Error),
Unknown(String),
}
Variants§
ServiceNotFound(String)
ConfigError(String)
ConnectionError(String)
SerializationError(Error)
IoError(Error)
Unknown(String)
Trait Implementations§
Source§impl Debug for RevokeError
impl Debug for RevokeError
Source§impl Display for RevokeError
impl Display for RevokeError
Source§impl Error for RevokeError
impl Error for RevokeError
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()
Source§impl From<Error> for RevokeError
impl From<Error> for RevokeError
Auto Trait Implementations§
impl Freeze for RevokeError
impl !RefUnwindSafe for RevokeError
impl Send for RevokeError
impl Sync for RevokeError
impl Unpin for RevokeError
impl !UnwindSafe for RevokeError
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