pub struct RedisError {
pub kind: RedisErrorKind,
pub description: String,
}
Expand description
Error issued by the Redis server
Fields§
§kind: RedisErrorKind
§description: String
Trait Implementations§
Source§impl Clone for RedisError
impl Clone for RedisError
Source§fn clone(&self) -> RedisError
fn clone(&self) -> RedisError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RedisError
impl Debug for RedisError
Source§impl Display for RedisError
impl Display for RedisError
Source§impl FromStr for RedisError
impl FromStr for RedisError
Source§impl PartialEq for RedisError
impl PartialEq for RedisError
impl Eq for RedisError
impl StructuralPartialEq for RedisError
Auto Trait Implementations§
impl Freeze for RedisError
impl RefUnwindSafe for RedisError
impl Send for RedisError
impl Sync for RedisError
impl Unpin for RedisError
impl UnwindSafe for RedisError
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