#[repr(C)]pub struct TransferFeeAmount {
pub withheld_amount: U64,
}Expand description
Transfer fee extension data for accounts.
Fields§
§withheld_amount: U64Amount withheld during transfers, to be harvested to the mint
Implementations§
Source§impl TransferFeeAmount
impl TransferFeeAmount
Sourcepub fn closable(&self) -> ProgramResult
pub fn closable(&self) -> ProgramResult
Check if the extension is in a closable state
Trait Implementations§
Source§impl Clone for TransferFeeAmount
impl Clone for TransferFeeAmount
Source§fn clone(&self) -> TransferFeeAmount
fn clone(&self) -> TransferFeeAmount
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 moreimpl Copy for TransferFeeAmount
Source§impl Debug for TransferFeeAmount
impl Debug for TransferFeeAmount
Source§impl Default for TransferFeeAmount
impl Default for TransferFeeAmount
Source§fn default() -> TransferFeeAmount
fn default() -> TransferFeeAmount
Returns the “default value” for a type. Read more
Source§impl Extension for TransferFeeAmount
impl Extension for TransferFeeAmount
Source§const TYPE: ExtensionType = ExtensionType::TransferFeeAmount
const TYPE: ExtensionType = ExtensionType::TransferFeeAmount
Associated extension type enum, checked at the start of TLV entries
Source§impl PartialEq for TransferFeeAmount
impl PartialEq for TransferFeeAmount
Source§fn eq(&self, other: &TransferFeeAmount) -> bool
fn eq(&self, other: &TransferFeeAmount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Pod for TransferFeeAmount
impl StructuralPartialEq for TransferFeeAmount
Auto Trait Implementations§
impl Freeze for TransferFeeAmount
impl RefUnwindSafe for TransferFeeAmount
impl Send for TransferFeeAmount
impl Sync for TransferFeeAmount
impl Unpin for TransferFeeAmount
impl UnsafeUnpin for TransferFeeAmount
impl UnwindSafe for TransferFeeAmount
Blanket Implementations§
impl<T> AnyBitPattern for Twhere
T: Pod,
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.