pub struct Notification<'a, T> {
pub jsonrpc: TwoPointZero,
pub method: Cow<'a, str>,
pub params: T,
pub extensions: Extensions,
}
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.
extensions: Extensions
Extensions of the notification.
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
.
Sourcepub fn method_name(&self) -> &str
pub fn method_name(&self) -> &str
Get the method name of the request.
Sourcepub fn extensions(&self) -> &Extensions
pub fn extensions(&self) -> &Extensions
Returns a reference to the associated extensions.
Sourcepub fn extensions_mut(&mut self) -> &mut Extensions
pub fn extensions_mut(&mut self) -> &mut Extensions
Returns a reference to the associated extensions.
Trait Implementations§
Source§impl<'a, T: Clone> Clone for Notification<'a, T>
impl<'a, T: Clone> Clone for Notification<'a, T>
Source§fn clone(&self) -> Notification<'a, T>
fn clone(&self) -> Notification<'a, T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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> Freeze for Notification<'a, T>where
T: Freeze,
impl<'a, T> !RefUnwindSafe for Notification<'a, T>
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>
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