pub struct BalanceResponse {
pub balance: f64,
pub currency: Option<String>,
}Expand description
Balance Response
Fields§
§balance: f64Balance
currency: Option<String>Currency
Trait Implementations§
Source§impl Clone for BalanceResponse
impl Clone for BalanceResponse
Source§fn clone(&self) -> BalanceResponse
fn clone(&self) -> BalanceResponse
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 BalanceResponse
impl Debug for BalanceResponse
Source§impl PartialEq for BalanceResponse
impl PartialEq for BalanceResponse
Source§impl PartialOrd for BalanceResponse
impl PartialOrd for BalanceResponse
impl StructuralPartialEq for BalanceResponse
Auto Trait Implementations§
impl Freeze for BalanceResponse
impl RefUnwindSafe for BalanceResponse
impl Send for BalanceResponse
impl Sync for BalanceResponse
impl Unpin for BalanceResponse
impl UnwindSafe for BalanceResponse
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