pub struct UiTransactionTokenBalance {
pub account_index: u8,
pub mint: String,
pub ui_token_amount: UiTokenAmount,
pub owner: OptionSerializer<String>,
pub program_id: OptionSerializer<String>,
}
Fields§
§account_index: u8
§mint: String
§ui_token_amount: UiTokenAmount
§owner: OptionSerializer<String>
§program_id: OptionSerializer<String>
Trait Implementations§
Source§impl Clone for UiTransactionTokenBalance
impl Clone for UiTransactionTokenBalance
Source§fn clone(&self) -> UiTransactionTokenBalance
fn clone(&self) -> UiTransactionTokenBalance
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 UiTransactionTokenBalance
impl Debug for UiTransactionTokenBalance
Source§impl<'de> Deserialize<'de> for UiTransactionTokenBalance
impl<'de> Deserialize<'de> for UiTransactionTokenBalance
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 From<TransactionTokenBalance> for UiTransactionTokenBalance
impl From<TransactionTokenBalance> for UiTransactionTokenBalance
Source§fn from(token_balance: TransactionTokenBalance) -> Self
fn from(token_balance: TransactionTokenBalance) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for UiTransactionTokenBalance
Auto Trait Implementations§
impl Freeze for UiTransactionTokenBalance
impl RefUnwindSafe for UiTransactionTokenBalance
impl Send for UiTransactionTokenBalance
impl Sync for UiTransactionTokenBalance
impl Unpin for UiTransactionTokenBalance
impl UnwindSafe for UiTransactionTokenBalance
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> 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