pub struct SignatureParams {Show 13 fields
pub gas_price: Option<String>,
pub relayer_fee: Option<String>,
pub gas_limit: Option<String>,
pub relay_hub: Option<String>,
pub relay: Option<String>,
pub operation: Option<String>,
pub safe_txn_gas: Option<String>,
pub base_gas: Option<String>,
pub gas_token: Option<String>,
pub refund_receiver: Option<String>,
pub payment_token: Option<String>,
pub payment: Option<String>,
pub payment_receiver: Option<String>,
}Fields§
§gas_price: Option<String>§relayer_fee: Option<String>§gas_limit: Option<String>§relay_hub: Option<String>§relay: Option<String>§operation: Option<String>§safe_txn_gas: Option<String>§base_gas: Option<String>§gas_token: Option<String>§refund_receiver: Option<String>§payment_token: Option<String>§payment: Option<String>§payment_receiver: Option<String>Trait Implementations§
Source§impl Clone for SignatureParams
impl Clone for SignatureParams
Source§fn clone(&self) -> SignatureParams
fn clone(&self) -> SignatureParams
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 moreSource§impl Debug for SignatureParams
impl Debug for SignatureParams
Source§impl Default for SignatureParams
impl Default for SignatureParams
Source§fn default() -> SignatureParams
fn default() -> SignatureParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignatureParams
impl<'de> Deserialize<'de> for SignatureParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignatureParams
impl RefUnwindSafe for SignatureParams
impl Send for SignatureParams
impl Sync for SignatureParams
impl Unpin for SignatureParams
impl UnsafeUnpin for SignatureParams
impl UnwindSafe for SignatureParams
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§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