pub struct SingleCoinBalanceResponse {
pub account_type: String,
pub biz_type: i32,
pub account_id: String,
pub member_id: String,
pub balance: CoinBalance,
}Expand description
Single coin balance response
Fields§
§account_type: StringAccount type
biz_type: i32Biz type
account_id: StringAccount ID
member_id: StringUID
balance: CoinBalanceBalance information
Trait Implementations§
Source§impl Clone for SingleCoinBalanceResponse
impl Clone for SingleCoinBalanceResponse
Source§fn clone(&self) -> SingleCoinBalanceResponse
fn clone(&self) -> SingleCoinBalanceResponse
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 SingleCoinBalanceResponse
impl Debug for SingleCoinBalanceResponse
Source§impl<'de> Deserialize<'de> for SingleCoinBalanceResponse
impl<'de> Deserialize<'de> for SingleCoinBalanceResponse
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
Auto Trait Implementations§
impl Freeze for SingleCoinBalanceResponse
impl RefUnwindSafe for SingleCoinBalanceResponse
impl Send for SingleCoinBalanceResponse
impl Sync for SingleCoinBalanceResponse
impl Unpin for SingleCoinBalanceResponse
impl UnsafeUnpin for SingleCoinBalanceResponse
impl UnwindSafe for SingleCoinBalanceResponse
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