Enum segment_rs::command::CommandError
source · [−]pub enum CommandError {
IncompatibleType,
Utf8Error(Utf8Error),
QueryError(String),
ConnectionError(ConnectionError),
}
Expand description
Represents a command error
Variants
IncompatibleType
Occurs when the type returned by the server and the type requested are incompatible
Utf8Error(Utf8Error)
Represents a utf8 conversion error
QueryError(String)
Represents an error returned by the segment server
ConnectionError(ConnectionError)
Represents a connection error
Trait Implementations
sourceimpl Debug for CommandError
impl Debug for CommandError
sourceimpl Display for CommandError
impl Display for CommandError
sourceimpl Error for CommandError
impl Error for CommandError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<ConnectionError> for CommandError
impl From<ConnectionError> for CommandError
sourcefn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for CommandError
impl Send for CommandError
impl Sync for CommandError
impl Unpin for CommandError
impl !UnwindSafe for CommandError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more