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
Auto Trait Implementations§
impl<'a, T> RefUnwindSafe for Notification<'a, T>where T: RefUnwindSafe,
impl<'a, T> Send for Notification<'a, T>where T: Send,
impl<'a, T> Sync for Notification<'a, T>where T: Sync,
impl<'a, T> Unpin for Notification<'a, T>where T: Unpin,
impl<'a, T> UnwindSafe for Notification<'a, T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more