#[repr(C)]pub struct TransferOut {
pub executed: u8,
pub padding_0: [u8; 7],
pub final_output_token: u64,
pub secondary_output_token: u64,
pub long_token: u64,
pub short_token: u64,
pub long_token_for_claimable_account_of_user: u64,
pub short_token_for_claimable_account_of_user: u64,
pub long_token_for_claimable_account_of_holding: u64,
pub short_token_for_claimable_account_of_holding: u64,
}Expand description
Transfer Out.
Fields§
§executed: u8§padding_0: [u8; 7]§final_output_token: u64§secondary_output_token: u64§long_token: u64§short_token: u64§long_token_for_claimable_account_of_user: u64§short_token_for_claimable_account_of_user: u64§long_token_for_claimable_account_of_holding: u64§short_token_for_claimable_account_of_holding: u64Trait Implementations§
Source§impl Clone for TransferOut
impl Clone for TransferOut
Source§fn clone(&self) -> TransferOut
fn clone(&self) -> TransferOut
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 TransferOut
impl Debug for TransferOut
Source§impl Default for TransferOut
impl Default for TransferOut
Source§fn default() -> TransferOut
fn default() -> TransferOut
Returns the “default value” for a type. Read more
impl Copy for TransferOut
impl Pod for TransferOut
Auto Trait Implementations§
impl Freeze for TransferOut
impl RefUnwindSafe for TransferOut
impl Send for TransferOut
impl Sync for TransferOut
impl Unpin for TransferOut
impl UnwindSafe for TransferOut
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.