pub struct DriftAlert {
pub alert_type: String,
pub severity: String,
pub message: String,
pub baseline_value: f64,
pub current_value: f64,
pub delta: f64,
pub details: Vec<String>,
}Fields§
§alert_type: String§severity: String§message: String§baseline_value: f64§current_value: f64§delta: f64§details: Vec<String>Trait Implementations§
Source§impl Clone for DriftAlert
impl Clone for DriftAlert
Source§fn clone(&self) -> DriftAlert
fn clone(&self) -> DriftAlert
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 DriftAlert
impl Debug for DriftAlert
Auto Trait Implementations§
impl Freeze for DriftAlert
impl RefUnwindSafe for DriftAlert
impl Send for DriftAlert
impl Sync for DriftAlert
impl Unpin for DriftAlert
impl UnsafeUnpin for DriftAlert
impl UnwindSafe for DriftAlert
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