Enum jsonrpc_core::params::Params [] [src]

pub enum Params {
    Array(Vec<Value>),
    Map(BTreeMap<StringValue>),
    None,
}

Request parameters

Variants

Array of values

Map of values

No parameters

Trait Implementations

impl Debug for Params
[src]

Formats the value using the given formatter.

impl PartialEq for Params
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Serialize for Params
[src]

Serializes this value into this serializer.

impl Deserialize for Params
[src]

Deserialize this value given this Deserializer.