pub struct AmpUsageSnapshot {
pub free_quota: Option<f64>,
pub free_used: Option<f64>,
pub free_remaining: Option<f64>,
pub hourly_replenishment: Option<f64>,
pub window_hours: Option<f64>,
pub individual_credits: Option<f64>,
pub workspace_balances: Vec<AmpWorkspaceBalance>,
pub account_email: Option<String>,
pub account_organization: Option<String>,
pub display_text: String,
}Fields§
§free_quota: Option<f64>§free_used: Option<f64>§free_remaining: Option<f64>§hourly_replenishment: Option<f64>§window_hours: Option<f64>§individual_credits: Option<f64>§workspace_balances: Vec<AmpWorkspaceBalance>§account_email: Option<String>§account_organization: Option<String>§display_text: StringTrait Implementations§
Source§impl Clone for AmpUsageSnapshot
impl Clone for AmpUsageSnapshot
Source§fn clone(&self) -> AmpUsageSnapshot
fn clone(&self) -> AmpUsageSnapshot
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 AmpUsageSnapshot
impl Debug for AmpUsageSnapshot
Source§impl<'de> Deserialize<'de> for AmpUsageSnapshot
impl<'de> Deserialize<'de> for AmpUsageSnapshot
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 PartialEq for AmpUsageSnapshot
impl PartialEq for AmpUsageSnapshot
Source§impl Serialize for AmpUsageSnapshot
impl Serialize for AmpUsageSnapshot
impl StructuralPartialEq for AmpUsageSnapshot
Auto Trait Implementations§
impl Freeze for AmpUsageSnapshot
impl RefUnwindSafe for AmpUsageSnapshot
impl Send for AmpUsageSnapshot
impl Sync for AmpUsageSnapshot
impl Unpin for AmpUsageSnapshot
impl UnsafeUnpin for AmpUsageSnapshot
impl UnwindSafe for AmpUsageSnapshot
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