pub struct AccountTransfer {
pub transfer_id: String,
pub status: AccountTransferStatus,
}
Expand description
Response type for a transfer to a linked Futures account
Fields§
§transfer_id: String
§status: AccountTransferStatus
Trait Implementations§
Source§impl Clone for AccountTransfer
impl Clone for AccountTransfer
Source§fn clone(&self) -> AccountTransfer
fn clone(&self) -> AccountTransfer
Returns a copy 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 AccountTransfer
impl Debug for AccountTransfer
Source§impl<'de> Deserialize<'de> for AccountTransfer
impl<'de> Deserialize<'de> for AccountTransfer
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
Source§impl PartialEq for AccountTransfer
impl PartialEq for AccountTransfer
impl StructuralPartialEq for AccountTransfer
Auto Trait Implementations§
impl Freeze for AccountTransfer
impl RefUnwindSafe for AccountTransfer
impl Send for AccountTransfer
impl Sync for AccountTransfer
impl Unpin for AccountTransfer
impl UnwindSafe for AccountTransfer
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