pub enum KeyspaceCommandRunError {
RunIterCommandFailed {
source: IterCommandRunError,
},
RunGetCommandFailed {
source: GetCommandRunError,
},
RunInsertCommandFailed {
source: InsertCommandRunError,
},
RunContainsCommandFailed {
source: ContainsCommandRunError,
},
RunLenCommandFailed {
source: LenCommandRunError,
},
RunClearCommandFailed {
source: ClearCommandRunError,
},
RunDeleteCommandFailed {
source: DeleteCommandRunError,
},
}Variants§
RunIterCommandFailed
Fields
§
source: IterCommandRunErrorRunGetCommandFailed
Fields
§
source: GetCommandRunErrorRunInsertCommandFailed
Fields
§
source: InsertCommandRunErrorRunContainsCommandFailed
Fields
§
source: ContainsCommandRunErrorRunLenCommandFailed
Fields
§
source: LenCommandRunErrorRunClearCommandFailed
Fields
§
source: ClearCommandRunErrorRunDeleteCommandFailed
Fields
§
source: DeleteCommandRunErrorTrait Implementations§
Source§impl Debug for KeyspaceCommandRunError
impl Debug for KeyspaceCommandRunError
Source§impl Display for KeyspaceCommandRunError
impl Display for KeyspaceCommandRunError
Source§impl Error for KeyspaceCommandRunError
impl Error for KeyspaceCommandRunError
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 KeyspaceCommandRunError
impl !RefUnwindSafe for KeyspaceCommandRunError
impl Send for KeyspaceCommandRunError
impl Sync for KeyspaceCommandRunError
impl Unpin for KeyspaceCommandRunError
impl UnsafeUnpin for KeyspaceCommandRunError
impl !UnwindSafe for KeyspaceCommandRunError
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