pub enum ContainsCommandRunError {
DecodeKeyBytesFailed {
source: ByteEncodingDecodeError,
key: String,
key_encoding: ByteEncoding,
},
KeyspaceNotFound {
keyspace: String,
},
KeyspaceFailed {
source: Error,
keyspace: String,
},
ContainsKeyFailed {
source: Error,
keyspace: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for ContainsCommandRunError
impl Debug for ContainsCommandRunError
Source§impl Display for ContainsCommandRunError
impl Display for ContainsCommandRunError
Source§impl Error for ContainsCommandRunError
impl Error for ContainsCommandRunError
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 ContainsCommandRunError
impl !RefUnwindSafe for ContainsCommandRunError
impl Send for ContainsCommandRunError
impl Sync for ContainsCommandRunError
impl Unpin for ContainsCommandRunError
impl UnsafeUnpin for ContainsCommandRunError
impl !UnwindSafe for ContainsCommandRunError
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