pub struct GetSubusersStatsRequest<'a> {
pub limit: Option<i64>,
pub offset: Option<i64>,
pub aggregated_by: Option<String>,
pub subusers: String,
pub start_date: String,
pub end_date: Option<String>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§limit: Option<i64>§offset: Option<i64>§aggregated_by: Option<String>§subusers: String§start_date: String§end_date: Option<String>Implementations§
Source§impl<'a> GetSubusersStatsRequest<'a>
impl<'a> GetSubusersStatsRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetSubusersStatsRequest<'a>
impl<'a> !RefUnwindSafe for GetSubusersStatsRequest<'a>
impl<'a> Send for GetSubusersStatsRequest<'a>
impl<'a> Sync for GetSubusersStatsRequest<'a>
impl<'a> Unpin for GetSubusersStatsRequest<'a>
impl<'a> !UnwindSafe for GetSubusersStatsRequest<'a>
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