Enum jsonrpc_client_transports::transports::ClientResponse [−][src]
pub enum ClientResponse { Output(Output), Notification(Notification), }
A type representing all possible values sent from the server to the client.
Variants
Output(Output)
A regular JSON-RPC request output (single response).
Notification(Notification)
A notification.
Implementations
impl ClientResponse
[src][−]
pub fn id(&self) -> Option<Id>
[src][−]
Get the id of the response (if any).
pub fn method(&self) -> Option<String>
[src][−]
Get the method name if the output is a notification.
pub fn subscription_id(&self) -> Option<SubscriptionId>
[src][−]
Parses the response into a subscription id.
Trait Implementations
impl Clone for ClientResponse
[src][+]
impl Debug for ClientResponse
[src][+]
impl<'de> Deserialize<'de> for ClientResponse
[src][+]
impl From<ClientResponse> for Result<Value, Error>
[src][+]
impl PartialEq<ClientResponse> for ClientResponse
[src][+]
impl Serialize for ClientResponse
[src][+]
impl StructuralPartialEq for ClientResponse
[src]
Auto Trait Implementations
impl RefUnwindSafe for ClientResponse
impl Send for ClientResponse
impl Sync for ClientResponse
impl Unpin for ClientResponse
impl UnwindSafe for ClientResponse
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Typeable for T where
T: Any,
[+]
T: Any,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,