pub struct GetServiceStatsParams {
pub service_id: String,
pub month: Option<String>,
pub year: Option<String>,
pub start_time: Option<i32>,
pub end_time: Option<i32>,
}
Expand description
struct for passing parameters to the method get_service_stats
Fields§
§service_id: String
Alphanumeric string identifying the service.
month: Option<String>
2-digit month.
year: Option<String>
4-digit year.
start_time: Option<i32>
Epoch timestamp. Limits the results returned.
end_time: Option<i32>
Epoch timestamp. Limits the results returned.
Trait Implementations§
Source§impl Clone for GetServiceStatsParams
impl Clone for GetServiceStatsParams
Source§fn clone(&self) -> GetServiceStatsParams
fn clone(&self) -> GetServiceStatsParams
Returns a duplicate 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 GetServiceStatsParams
impl Debug for GetServiceStatsParams
Source§impl Default for GetServiceStatsParams
impl Default for GetServiceStatsParams
Source§fn default() -> GetServiceStatsParams
fn default() -> GetServiceStatsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetServiceStatsParams
impl RefUnwindSafe for GetServiceStatsParams
impl Send for GetServiceStatsParams
impl Sync for GetServiceStatsParams
impl Unpin for GetServiceStatsParams
impl UnwindSafe for GetServiceStatsParams
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