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
impl Clone for Client
[src]
impl From<RpcChannel> for Client
[src]
fn from(channel: RpcChannel) -> Self
[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]
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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>,