pub enum Response {
Success {
jsonrpc: Cow<'static, str>,
id: Value,
result: Value,
},
Failure {
jsonrpc: Cow<'static, str>,
id: Value,
error: Error,
},
}
Expand description
A JSON-RPC response.
Variants§
Implementations§
Source§impl Response
impl Response
Sourcepub fn new_success(id: Value, result: Value) -> Self
pub fn new_success(id: Value, result: Value) -> Self
Returns a new Response::Success
.
Sourcepub fn new_failure(id: Value, error: Error) -> Self
pub fn new_failure(id: Value, error: Error) -> Self
Returns a new Response::Failure
.
Sourcepub fn is_success(&self) -> bool
pub fn is_success(&self) -> bool
Returns true
is this is a Response::Success
.
Sourcepub fn is_failure(&self) -> bool
pub fn is_failure(&self) -> bool
Returns true
is this is a Response::Failure
.
Sourcepub fn raw_result(&self) -> Option<&Value>
pub fn raw_result(&self) -> Option<&Value>
Returns the “result” field, or None
if this is a Response::Failure
.
Sourcepub fn result<T: DeserializeOwned>(&self) -> Option<T>
pub fn result<T: DeserializeOwned>(&self) -> Option<T>
Returns the “result” field parsed as T
, or None
if this is a Response::Failure
or if
parsing fails.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Response
impl<'de> Deserialize<'de> for Response
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Response
impl StructuralPartialEq for Response
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more