pub enum ElasticError {
Connection(String),
Send(String),
JsonParse(String),
Status(u16, String),
Response(String),
NotFound(String),
}
Variants§
Connection(String)
Send(String)
JsonParse(String)
Status(u16, String)
Response(String)
NotFound(String)
Trait Implementations§
Source§impl Debug for ElasticError
impl Debug for ElasticError
Auto Trait Implementations§
impl Freeze for ElasticError
impl RefUnwindSafe for ElasticError
impl Send for ElasticError
impl Sync for ElasticError
impl Unpin for ElasticError
impl UnwindSafe for ElasticError
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