#[non_exhaustive]pub struct InvalidAlarmConfigException { /* private fields */ }
Expand description
The format of the alarm configuration is invalid. Possible causes include:
-
The alarm list is null.
-
The alarm object is null.
-
The alarm name is empty or null or exceeds the limit of 255 characters.
-
Two alarms with the same name have been specified.
-
The alarm configuration is enabled, but the alarm list is empty.
Implementations
sourceimpl InvalidAlarmConfigException
impl InvalidAlarmConfigException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvalidAlarmConfigException
.
Trait Implementations
sourceimpl Clone for InvalidAlarmConfigException
impl Clone for InvalidAlarmConfigException
sourcefn clone(&self) -> InvalidAlarmConfigException
fn clone(&self) -> InvalidAlarmConfigException
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InvalidAlarmConfigException
impl Debug for InvalidAlarmConfigException
sourceimpl Display for InvalidAlarmConfigException
impl Display for InvalidAlarmConfigException
sourceimpl Error for InvalidAlarmConfigException
impl Error for InvalidAlarmConfigException
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl PartialEq<InvalidAlarmConfigException> for InvalidAlarmConfigException
impl PartialEq<InvalidAlarmConfigException> for InvalidAlarmConfigException
sourcefn eq(&self, other: &InvalidAlarmConfigException) -> bool
fn eq(&self, other: &InvalidAlarmConfigException) -> bool
impl StructuralPartialEq for InvalidAlarmConfigException
Auto Trait Implementations
impl RefUnwindSafe for InvalidAlarmConfigException
impl Send for InvalidAlarmConfigException
impl Sync for InvalidAlarmConfigException
impl Unpin for InvalidAlarmConfigException
impl UnwindSafe for InvalidAlarmConfigException
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more