pub struct JoinFill<L, R> { /* private fields */ }
Expand description
A layer that can fill in a TransactionRequest
with additional information by joining two
TxFiller
s.
This struct is itself a TxFiller
, and can be nested to compose any number of fill layers.
Implementations§
Trait Implementations§
Source§impl<L, R, P, T, N> ProviderLayer<P, T, N> for JoinFill<L, R>
impl<L, R, P, T, N> ProviderLayer<P, T, N> for JoinFill<L, R>
Source§impl<L, R, N> TxFiller<N> for JoinFill<L, R>
impl<L, R, N> TxFiller<N> for JoinFill<L, R>
Source§type Fillable = (Option<<L as TxFiller<N>>::Fillable>, Option<<R as TxFiller<N>>::Fillable>)
type Fillable = (Option<<L as TxFiller<N>>::Fillable>, Option<<R as TxFiller<N>>::Fillable>)
The properties that this filler retrieves from the RPC. to fill in the
TransactionRequest.
Source§fn status(&self, tx: &N::TransactionRequest) -> FillerControlFlow
fn status(&self, tx: &N::TransactionRequest) -> FillerControlFlow
Return a control-flow enum indicating whether the filler is ready to
fill in the transaction request, or if it is missing required
properties.
Source§fn fill_sync(&self, tx: &mut SendableTx<N>)
fn fill_sync(&self, tx: &mut SendableTx<N>)
Performs any synchronous filling. This should be called before
TxFiller::prepare
and TxFiller::fill
to fill in any properties
that can be filled synchronously.Source§async fn prepare<P, T>(
&self,
provider: &P,
tx: &N::TransactionRequest,
) -> TransportResult<Self::Fillable>
async fn prepare<P, T>( &self, provider: &P, tx: &N::TransactionRequest, ) -> TransportResult<Self::Fillable>
Prepares fillable properties, potentially by making an RPC request.
Source§async fn fill(
&self,
to_fill: Self::Fillable,
tx: SendableTx<N>,
) -> TransportResult<SendableTx<N>>
async fn fill( &self, to_fill: Self::Fillable, tx: SendableTx<N>, ) -> TransportResult<SendableTx<N>>
Fills in the transaction request with the fillable properties.
Source§fn join_with<T>(self, other: T) -> JoinFill<Self, T>where
T: TxFiller<N>,
fn join_with<T>(self, other: T) -> JoinFill<Self, T>where
T: TxFiller<N>,
Joins this filler with another filler to compose multiple fillers.
Source§fn continue_filling(&self, tx: &SendableTx<N>) -> bool
fn continue_filling(&self, tx: &SendableTx<N>) -> bool
Returns
true
if the filler is should continue filling.Source§fn ready(&self, tx: &N::TransactionRequest) -> bool
fn ready(&self, tx: &N::TransactionRequest) -> bool
Returns
true
if the filler is ready to fill in the transaction request.Source§fn finished(&self, tx: &N::TransactionRequest) -> bool
fn finished(&self, tx: &N::TransactionRequest) -> bool
Returns
true
if the filler is finished filling in the transaction request.Source§fn prepare_and_fill<P, T>(
&self,
provider: &P,
tx: SendableTx<N>,
) -> impl Send + Future<Output = TransportResult<SendableTx<N>>>
fn prepare_and_fill<P, T>( &self, provider: &P, tx: SendableTx<N>, ) -> impl Send + Future<Output = TransportResult<SendableTx<N>>>
Prepares and fills the transaction request with the fillable properties.
Source§impl<L, R, N> WalletProvider<N> for JoinFill<L, R>where
R: WalletProvider<N>,
N: Network,
impl<L, R, N> WalletProvider<N> for JoinFill<L, R>where
R: WalletProvider<N>,
N: Network,
Source§type Wallet = <R as WalletProvider<N>>::Wallet
type Wallet = <R as WalletProvider<N>>::Wallet
The underlying
NetworkWallet
type contained in this stack.Source§fn wallet_mut(&mut self) -> &mut Self::Wallet
fn wallet_mut(&mut self) -> &mut Self::Wallet
Get a mutable reference to the underlying wallet.
Source§fn default_signer_address(&self) -> Address
fn default_signer_address(&self) -> Address
Get the default signer address.
Source§fn has_signer_for(&self, address: &Address) -> bool
fn has_signer_for(&self, address: &Address) -> bool
Check if the signer can sign for the given address.
Source§fn signer_addresses(&self) -> impl Iterator<Item = Address>
fn signer_addresses(&self) -> impl Iterator<Item = Address>
Get an iterator of all signer addresses. Note that because the signer
always has at least one address, this iterator will always have at least
one element.
impl<L: Copy, R: Copy> Copy for JoinFill<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for JoinFill<L, R>
impl<L, R> RefUnwindSafe for JoinFill<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for JoinFill<L, R>
impl<L, R> Sync for JoinFill<L, R>
impl<L, R> Unpin for JoinFill<L, R>
impl<L, R> UnwindSafe for JoinFill<L, R>where
L: UnwindSafe,
R: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more