Struct jsonrpsee_http_client::SubscriptionMessage[][src]

pub struct SubscriptionMessage {
    pub raw: String,
    pub subscribe_id: u64,
    pub unsubscribe_id: u64,
    pub unsubscribe_method: String,
    pub send_back: Sender<Result<(Receiver<Value>, SubscriptionId), Error>>,
}

Subscription message.

Fields

raw: String

Serialized message.

subscribe_id: u64

Request ID of the subscribe message.

unsubscribe_id: u64

Request ID of the unsubscribe message.

unsubscribe_method: String

Method to use to unsubscribe later. Used if the channel unexpectedly closes.

send_back: Sender<Result<(Receiver<Value>, SubscriptionId), Error>>

If the subscription succeeds, we return a [mpsc::Receiver] that will receive notifications. When we get a response from the server about that subscription, we send the result over this channel.

Trait Implementations

impl Debug for SubscriptionMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.