[][src]Struct easy_jsonrpc::BoundMethod

pub struct BoundMethod<'a, T> where
    T: Deserialize<'static>, 
{ /* fields omitted */ }

Create a binding of arguments to a method name. Can be turned into either a jsonrpc call using call, or a jsonrpc notification using notification.

Methods

impl<'a, T> BoundMethod<'a, T> where
    T: Deserialize<'static>, 
[src]

pub fn new(method: &'a str, args: Vec<Value>) -> BoundMethod<T>[src]

Create a binding of arguments to a method name. You probably don't want to use this method directly. Try using the rpc macro instead.

pub fn call(&'a self) -> (Call<'a>, Tracker<T>) where
    T: Deserialize<'static>, 
[src]

Create a jsonrpc method call with a random id and a tracker for retrieving the return value.

pub fn notification(&'a self) -> Call<'a>[src]

Create a jsonrpc method call with no id. Jsonrpc servers accept notifications silently. That is to say, they handle the notification, but send to reasponse.

Trait Implementations

impl<'a, T: Debug> Debug for BoundMethod<'a, T> where
    T: Deserialize<'static>, 
[src]

Auto Trait Implementations

impl<'a, T> !Send for BoundMethod<'a, T>

impl<'a, T> !Sync for BoundMethod<'a, T>

impl<'a, T> Unpin for BoundMethod<'a, T>

impl<'a, T> UnwindSafe for BoundMethod<'a, T> where
    T: RefUnwindSafe

impl<'a, T> RefUnwindSafe for BoundMethod<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]