Struct evm_rpc::chain_mock::gen_client::Client[][src]

pub struct Client { /* fields omitted */ }

The Client.

Implementations

impl Client[src]

pub fn new(sender: RpcChannel) -> Self[src]

Creates a new Client.

pub fn client_version(&self) -> impl Future<Item = String, Error = RpcError>[src]

pub fn sha3(
    &self,
    bytes: Bytes
) -> impl Future<Item = Hex<H256>, Error = RpcError>
[src]

pub fn network_id(&self) -> impl Future<Item = String, Error = RpcError>[src]

pub fn is_listening(&self) -> impl Future<Item = bool, Error = RpcError>[src]

pub fn peer_count(&self) -> impl Future<Item = Hex<usize>, Error = RpcError>[src]

pub fn chain_id(&self) -> impl Future<Item = Hex<u64>, Error = RpcError>[src]

pub fn protocol_version(&self) -> impl Future<Item = String, Error = RpcError>[src]

pub fn is_syncing(&self) -> impl Future<Item = bool, Error = RpcError>[src]

pub fn coinbase(&self) -> impl Future<Item = Hex<Address>, Error = RpcError>[src]

pub fn is_mining(&self) -> impl Future<Item = bool, Error = RpcError>[src]

pub fn hashrate(&self) -> impl Future<Item = String, Error = RpcError>[src]

pub fn block_by_hash(
    &self,
    block_hash: Hex<H256>,
    full: bool
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]

pub fn block_by_number(
    &self,
    block: String,
    full: bool
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]

pub fn uncle_by_block_hash_and_index(
    &self,
    block_hash: Hex<H256>,
    uncle_id: Hex<U256>
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]

pub fn uncle_by_block_number_and_index(
    &self,
    block: String,
    uncle_id: Hex<U256>
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]

pub fn block_transaction_count_by_hash(
    &self,
    block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]

pub fn block_transaction_count_by_number(
    &self,
    block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]

pub fn block_uncles_count_by_hash(
    &self,
    block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]

pub fn block_uncles_count_by_number(
    &self,
    block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]

pub fn transaction_by_block_hash_and_index(
    &self,
    block_hash: Hex<H256>,
    tx_id: Hex<U256>
) -> impl Future<Item = Option<RPCTransaction>, Error = RpcError>
[src]

pub fn transaction_by_block_number_and_index(
    &self,
    block: String,
    tx_id: Hex<U256>
) -> impl Future<Item = Option<RPCTransaction>, Error = RpcError>
[src]

Trait Implementations

impl Clone for Client[src]

impl From<RpcChannel> for Client[src]

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

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> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]