Struct jsonrpsee_types::request::Notification
source · pub struct Notification<'a, T> {
pub jsonrpc: TwoPointZero,
pub method: Cow<'a, str>,
pub params: T,
}
Expand description
JSON-RPC notification (a request object without a request ID) as defined in the spec.
Fields§
§jsonrpc: TwoPointZero
JSON-RPC version.
method: Cow<'a, str>
Name of the method to be invoked.
params: T
Parameter values of the request.
Implementations§
source§impl<'a, T> Notification<'a, T>
impl<'a, T> Notification<'a, T>
sourcepub fn new(method: Cow<'a, str>, params: T) -> Self
pub fn new(method: Cow<'a, str>, params: T) -> Self
Create a new Notification
.
Trait Implementations§
source§impl<'a, T: Debug> Debug for Notification<'a, T>
impl<'a, T: Debug> Debug for Notification<'a, T>
source§impl<'de: 'a, 'a, T> Deserialize<'de> for Notification<'a, T>where
T: Deserialize<'de>,
impl<'de: 'a, 'a, T> Deserialize<'de> for Notification<'a, T>where
T: Deserialize<'de>,
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