[][src]Struct jsonrpc_v2::RequestBuilder

pub struct RequestBuilder<M = ()> { /* fields omitted */ }

Builder struct for a request object

Methods

impl<M> RequestBuilder<M>[src]

pub fn with_id<I: Into<Id>>(self, id: I) -> Self[src]

pub fn with_params<I: Into<Value>>(self, params: I) -> Self[src]

impl RequestBuilder<()>[src]

pub fn with_method<I: Into<String>>(self, method: I) -> RequestBuilder<String>[src]

impl RequestBuilder<String>[src]

pub fn finish(self) -> RequestObject[src]

Trait Implementations

impl<M: Default> Default for RequestBuilder<M>[src]

Auto Trait Implementations

impl<M> Send for RequestBuilder<M> where
    M: Send

impl<M> Sync for RequestBuilder<M> where
    M: Sync

impl<M> Unpin for RequestBuilder<M> where
    M: Unpin

impl<M> UnwindSafe for RequestBuilder<M> where
    M: UnwindSafe

impl<M> RefUnwindSafe for RequestBuilder<M> where
    M: RefUnwindSafe

Blanket Implementations

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

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

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

type Error = !

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]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,