#[non_exhaustive]pub struct GetSLOOptionalParams {
pub with_configured_alert_ids: Option<bool>,
}
Expand description
GetSLOOptionalParams is a struct for passing parameters to the method ServiceLevelObjectivesAPI::get_slo
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.with_configured_alert_ids: Option<bool>
Get the IDs of SLO monitors that reference this SLO.
Implementations§
Source§impl GetSLOOptionalParams
impl GetSLOOptionalParams
Sourcepub fn with_configured_alert_ids(self, value: bool) -> Self
pub fn with_configured_alert_ids(self, value: bool) -> Self
Get the IDs of SLO monitors that reference this SLO.
Trait Implementations§
Source§impl Clone for GetSLOOptionalParams
impl Clone for GetSLOOptionalParams
Source§fn clone(&self) -> GetSLOOptionalParams
fn clone(&self) -> GetSLOOptionalParams
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 GetSLOOptionalParams
impl Debug for GetSLOOptionalParams
Source§impl Default for GetSLOOptionalParams
impl Default for GetSLOOptionalParams
Source§fn default() -> GetSLOOptionalParams
fn default() -> GetSLOOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSLOOptionalParams
impl RefUnwindSafe for GetSLOOptionalParams
impl Send for GetSLOOptionalParams
impl Sync for GetSLOOptionalParams
impl Unpin for GetSLOOptionalParams
impl UnwindSafe for GetSLOOptionalParams
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