Struct jsonrpsee_types::RegisterNotificationMessage[][src]

pub struct RegisterNotificationMessage {
    pub method: String,
    pub send_back: Sender<Result<(Receiver<JsonValue>, String), Error>>,
}
Expand description

RegisterNotification message.

Fields

method: String

Method name this notification handler is attached to

send_back: Sender<Result<(Receiver<JsonValue>, String), Error>>

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.