pub struct ClientsUsageReport {
pub account_id: Option<String>,
pub clients: Option<Vec<ClientUsageInfo>>,
pub product: Option<String>,
pub time: Option<String>,
pub total_clients: Option<i64>,
}Fields§
§account_id: Option<String>§clients: Option<Vec<ClientUsageInfo>>§product: Option<String>§time: Option<String>§total_clients: Option<i64>Implementations§
Source§impl ClientsUsageReport
impl ClientsUsageReport
pub fn new() -> ClientsUsageReport
Trait Implementations§
Source§impl Clone for ClientsUsageReport
impl Clone for ClientsUsageReport
Source§fn clone(&self) -> ClientsUsageReport
fn clone(&self) -> ClientsUsageReport
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 ClientsUsageReport
impl Debug for ClientsUsageReport
Source§impl Default for ClientsUsageReport
impl Default for ClientsUsageReport
Source§fn default() -> ClientsUsageReport
fn default() -> ClientsUsageReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClientsUsageReport
impl<'de> Deserialize<'de> for ClientsUsageReport
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 ClientsUsageReport
impl PartialEq for ClientsUsageReport
Source§fn eq(&self, other: &ClientsUsageReport) -> bool
fn eq(&self, other: &ClientsUsageReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClientsUsageReport
impl Serialize for ClientsUsageReport
impl StructuralPartialEq for ClientsUsageReport
Auto Trait Implementations§
impl Freeze for ClientsUsageReport
impl RefUnwindSafe for ClientsUsageReport
impl Send for ClientsUsageReport
impl Sync for ClientsUsageReport
impl Unpin for ClientsUsageReport
impl UnsafeUnpin for ClientsUsageReport
impl UnwindSafe for ClientsUsageReport
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