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