[][src]Struct factom::requests::ApiRequest

pub struct ApiRequest {
    pub jsonrpc: &'static str,
    pub id: Wrapping<usize>,
    pub method: String,
    pub params: HashMap<String, Value>,
}

Generic request struct is serialized into the JSON body

Fields

jsonrpc: &'static strid: Wrapping<usize>method: Stringparams: HashMap<String, Value>

Methods

impl ApiRequest[src]

pub fn new(method: &str) -> ApiRequest[src]

Creates a new ApiRequest with the specified json-rpc method

pub fn json(self) -> String[src]

Serialises the request into a valid json string, serde will panic upon failure

pub fn builder(uri: &Uri) -> Builder[src]

Builds the basis of a request minus the json body

Trait Implementations

impl Clone for ApiRequest[src]

impl Debug for ApiRequest[src]

impl Serialize for ApiRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.