pub struct EscalationAlert {
pub from_risk: f64,
pub to_risk: f64,
pub turn_index: usize,
pub escalation_count: u32,
}Expand description
Details of a risk-escalation between consecutive turns.
Fields§
§from_risk: f64§to_risk: f64§turn_index: usize§escalation_count: u32Trait Implementations§
Source§impl Clone for EscalationAlert
impl Clone for EscalationAlert
Source§fn clone(&self) -> EscalationAlert
fn clone(&self) -> EscalationAlert
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 EscalationAlert
impl RefUnwindSafe for EscalationAlert
impl Send for EscalationAlert
impl Sync for EscalationAlert
impl Unpin for EscalationAlert
impl UnsafeUnpin for EscalationAlert
impl UnwindSafe for EscalationAlert
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