DumpEvent

Type Alias DumpEvent 

Source
pub type DumpEvent = RpcMethodCall;

Aliased Type§

pub struct DumpEvent {
    pub jsonrpc: Version,
    pub method: String,
    pub params: RequestParams,
    pub id: Id,
}

Fields§

§jsonrpc: Version

The version of the protocol

§method: String

The name of the method to execute

§params: RequestParams

An array or object containing the parameters to be passed to the function.

§id: Id

The identifier for this request issued by the client, An Id must be a String, null or a number. If missing it’s considered a notification in Version::V2