pub struct Parity<T> { /* private fields */ }
Expand description
Parity
namespace
Implementations§
Source§impl<T: Transport> Parity<T>
impl<T: Transport> Parity<T>
Sourcepub fn call(
&self,
reqs: Vec<CallRequest>,
options: CallOptions,
) -> CallFuture<Vec<Bytes>, T::Out> ⓘ
pub fn call( &self, reqs: Vec<CallRequest>, options: CallOptions, ) -> CallFuture<Vec<Bytes>, T::Out> ⓘ
Sequentially call multiple contract methods in one request without changing the state of the blockchain.
Sourcepub fn pending_transactions(
&self,
limit: Option<usize>,
filter: Option<ParityPendingTransactionFilter>,
options: CallOptions,
) -> CallFuture<Vec<Transaction>, T::Out> ⓘ
pub fn pending_transactions( &self, limit: Option<usize>, filter: Option<ParityPendingTransactionFilter>, options: CallOptions, ) -> CallFuture<Vec<Transaction>, T::Out> ⓘ
Get pending transactions Blocked by https://github.com/openethereum/openethereum/issues/159
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Parity<T>where
T: Freeze,
impl<T> RefUnwindSafe for Parity<T>where
T: RefUnwindSafe,
impl<T> Send for Parity<T>where
T: Send,
impl<T> Sync for Parity<T>where
T: Sync,
impl<T> Unpin for Parity<T>where
T: Unpin,
impl<T> UnwindSafe for Parity<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more