pub struct SignEthereumTransactionRequestBuilder { /* private fields */ }
Expand description
Builder for SignEthereumTransactionRequest
.
Implementations§
Source§impl SignEthereumTransactionRequestBuilder
impl SignEthereumTransactionRequestBuilder
pub fn mount<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn address<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn chain_id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn amount<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn data<VALUE: Into<Bytes>>(&mut self, value: VALUE) -> &mut Self
pub fn gas_limit<VALUE: Into<u64>>(&mut self, value: VALUE) -> &mut Self
pub fn gas_price<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn nonce<VALUE: Into<u64>>(&mut self, value: VALUE) -> &mut Self
pub fn to<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<SignEthereumTransactionRequest, SignEthereumTransactionRequestBuilderError>
pub fn build( &self, ) -> Result<SignEthereumTransactionRequest, SignEthereumTransactionRequestBuilderError>
Trait Implementations§
Source§impl Clone for SignEthereumTransactionRequestBuilder
impl Clone for SignEthereumTransactionRequestBuilder
Source§fn clone(&self) -> SignEthereumTransactionRequestBuilder
fn clone(&self) -> SignEthereumTransactionRequestBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SignEthereumTransactionRequestBuilder
impl RefUnwindSafe for SignEthereumTransactionRequestBuilder
impl Send for SignEthereumTransactionRequestBuilder
impl Sync for SignEthereumTransactionRequestBuilder
impl Unpin for SignEthereumTransactionRequestBuilder
impl UnwindSafe for SignEthereumTransactionRequestBuilder
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