pub struct CustomerBalance {
pub available: String,
pub reserved: String,
pub used: String,
}
Fields§
§available: String
Total amount of credit available to use.
reserved: String
Total amount of credit temporarily reserved for billed
transactions.
used: String
Total amount of credit used.
Trait Implementations§
Source§impl Clone for CustomerBalance
impl Clone for CustomerBalance
Source§fn clone(&self) -> CustomerBalance
fn clone(&self) -> CustomerBalance
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 CustomerBalance
impl Debug for CustomerBalance
Source§impl<'de> Deserialize<'de> for CustomerBalance
impl<'de> Deserialize<'de> for CustomerBalance
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 CustomerBalance
impl RefUnwindSafe for CustomerBalance
impl Send for CustomerBalance
impl Sync for CustomerBalance
impl Unpin for CustomerBalance
impl UnwindSafe for CustomerBalance
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