pub struct AbstractAlarm {
pub label: String,
pub message: String,
pub severity: AlarmSeverity,
}Expand description
An alarm generated when abstract analysis detects a potential issue.
Fields§
§label: String§message: String§severity: AlarmSeverityImplementations§
Trait Implementations§
Source§impl Clone for AbstractAlarm
impl Clone for AbstractAlarm
Source§fn clone(&self) -> AbstractAlarm
fn clone(&self) -> AbstractAlarm
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 moreAuto Trait Implementations§
impl Freeze for AbstractAlarm
impl RefUnwindSafe for AbstractAlarm
impl Send for AbstractAlarm
impl Sync for AbstractAlarm
impl Unpin for AbstractAlarm
impl UnsafeUnpin for AbstractAlarm
impl UnwindSafe for AbstractAlarm
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