pub struct UsageResponse {
pub object: String,
pub data: Vec<UsageTimeBucket>,
pub has_more: bool,
pub next_page: String,
}
Fields§
§object: String
§data: Vec<UsageTimeBucket>
§has_more: bool
§next_page: String
Trait Implementations§
Source§impl Clone for UsageResponse
impl Clone for UsageResponse
Source§fn clone(&self) -> UsageResponse
fn clone(&self) -> UsageResponse
Returns a copy 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 UsageResponse
impl Debug for UsageResponse
Source§impl Default for UsageResponse
impl Default for UsageResponse
Source§fn default() -> UsageResponse
fn default() -> UsageResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UsageResponse
impl RefUnwindSafe for UsageResponse
impl Send for UsageResponse
impl Sync for UsageResponse
impl Unpin for UsageResponse
impl UnwindSafe for UsageResponse
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