pub struct LogAggregationsGetParams {
pub source: String,
pub service_id: String,
pub start: String,
pub end: String,
pub series: String,
pub limit: Option<f32>,
pub filter: Option<String>,
pub dimensions: Option<String>,
pub sort: Option<String>,
}
Expand description
struct for passing parameters to the method log_aggregations_get
Fields§
§source: String
§service_id: String
§start: String
§end: String
§series: String
§limit: Option<f32>
§filter: Option<String>
§dimensions: Option<String>
§sort: Option<String>
Trait Implementations§
Source§impl Clone for LogAggregationsGetParams
impl Clone for LogAggregationsGetParams
Source§fn clone(&self) -> LogAggregationsGetParams
fn clone(&self) -> LogAggregationsGetParams
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 LogAggregationsGetParams
impl Debug for LogAggregationsGetParams
Source§impl Default for LogAggregationsGetParams
impl Default for LogAggregationsGetParams
Source§fn default() -> LogAggregationsGetParams
fn default() -> LogAggregationsGetParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LogAggregationsGetParams
impl RefUnwindSafe for LogAggregationsGetParams
impl Send for LogAggregationsGetParams
impl Sync for LogAggregationsGetParams
impl Unpin for LogAggregationsGetParams
impl UnwindSafe for LogAggregationsGetParams
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