pub struct BillingInfo {
pub total_credits_left: u64,
}Expand description
The authenticated account’s current remaining credit balance.
Fields§
§total_credits_left: u64Credits remaining in the current billing state.
Trait Implementations§
Source§impl Clone for BillingInfo
impl Clone for BillingInfo
Source§fn clone(&self) -> BillingInfo
fn clone(&self) -> BillingInfo
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 moreSource§impl Debug for BillingInfo
impl Debug for BillingInfo
impl Eq for BillingInfo
Source§impl PartialEq for BillingInfo
impl PartialEq for BillingInfo
Source§fn eq(&self, other: &BillingInfo) -> bool
fn eq(&self, other: &BillingInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BillingInfo
Auto Trait Implementations§
impl Freeze for BillingInfo
impl RefUnwindSafe for BillingInfo
impl Send for BillingInfo
impl Sync for BillingInfo
impl Unpin for BillingInfo
impl UnsafeUnpin for BillingInfo
impl UnwindSafe for BillingInfo
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