pub enum ResponseFail {
ResultNotFound,
InvalidResponse,
RpcError(Error),
}
Expand description
Error returned when a tracker fails to retrive its response.
Variants§
ResultNotFound
Server responded, but Server did not specify a result for the call in question.
InvalidResponse
Server specified a result for the call in question, but it the result was malformed.
RpcError(Error)
Server specified a result for the call in question and the result was an rpc error.
Trait Implementations§
Source§impl Clone for ResponseFail
impl Clone for ResponseFail
Source§fn clone(&self) -> ResponseFail
fn clone(&self) -> ResponseFail
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResponseFail
impl Debug for ResponseFail
Source§impl PartialEq for ResponseFail
impl PartialEq for ResponseFail
impl StructuralPartialEq for ResponseFail
Auto Trait Implementations§
impl Freeze for ResponseFail
impl RefUnwindSafe for ResponseFail
impl Send for ResponseFail
impl Sync for ResponseFail
impl Unpin for ResponseFail
impl UnwindSafe for ResponseFail
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