pub struct TransferWithAuthorizationInput {
pub from_address: String,
pub to_address: String,
pub value_minor_units: u128,
pub valid_after: u64,
pub valid_before: u64,
pub nonce: String,
}Fields§
§from_address: String§to_address: String§value_minor_units: u128§valid_after: u64§valid_before: u64§nonce: StringTrait Implementations§
Source§impl Clone for TransferWithAuthorizationInput
impl Clone for TransferWithAuthorizationInput
Source§fn clone(&self) -> TransferWithAuthorizationInput
fn clone(&self) -> TransferWithAuthorizationInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for TransferWithAuthorizationInput
impl<'de> Deserialize<'de> for TransferWithAuthorizationInput
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
impl Eq for TransferWithAuthorizationInput
impl StructuralPartialEq for TransferWithAuthorizationInput
Auto Trait Implementations§
impl Freeze for TransferWithAuthorizationInput
impl RefUnwindSafe for TransferWithAuthorizationInput
impl Send for TransferWithAuthorizationInput
impl Sync for TransferWithAuthorizationInput
impl Unpin for TransferWithAuthorizationInput
impl UnsafeUnpin for TransferWithAuthorizationInput
impl UnwindSafe for TransferWithAuthorizationInput
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