Struct evm_rpc::chain_mock::gen_client::Client [−][src]
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]
&self,
bytes: Bytes
) -> impl Future<Item = Hex<H256>, Error = RpcError>
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]
&self,
block_hash: Hex<H256>,
full: bool
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
pub fn block_by_number(
&self,
block: String,
full: bool
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]
&self,
block: String,
full: bool
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
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]
&self,
block_hash: Hex<H256>,
uncle_id: Hex<U256>
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
pub fn uncle_by_block_number_and_index(
&self,
block: String,
uncle_id: Hex<U256>
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
[src]
&self,
block: String,
uncle_id: Hex<U256>
) -> impl Future<Item = Option<RPCBlock>, Error = RpcError>
pub fn block_transaction_count_by_hash(
&self,
block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]
&self,
block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
pub fn block_transaction_count_by_number(
&self,
block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]
&self,
block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
pub fn block_uncles_count_by_hash(
&self,
block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]
&self,
block_hash: Hex<H256>
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
pub fn block_uncles_count_by_number(
&self,
block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
[src]
&self,
block: String
) -> impl Future<Item = Option<Hex<usize>>, Error = RpcError>
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]
&self,
block_hash: Hex<H256>,
tx_id: Hex<U256>
) -> impl Future<Item = Option<RPCTransaction>, Error = RpcError>
pub fn transaction_by_block_number_and_index(
&self,
block: String,
tx_id: Hex<U256>
) -> impl Future<Item = Option<RPCTransaction>, Error = RpcError>
[src]
&self,
block: String,
tx_id: Hex<U256>
) -> impl Future<Item = Option<RPCTransaction>, Error = RpcError>
Trait Implementations
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Pointable for T
[src][+]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Typeable for T where
T: Any,
[+]
T: Any,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,