pub struct EscalationRow {
pub ts: DateTime<Utc>,
pub mission_id: String,
pub kind: EscalationKind,
pub summary: String,
pub decision: String,
pub latency_ms: Option<u64>,
pub rubber_stamp: Option<bool>,
}Fields§
§ts: DateTime<Utc>§mission_id: String§kind: EscalationKind§summary: String§decision: String§latency_ms: Option<u64>§rubber_stamp: Option<bool>Rubber-stamp marker (ticket rubber-stamp-grant-flag), stamped at
aggregate time against the configured threshold: Some(true) when
this is a grant APPROVED in under the threshold, Some(false) for an
approved grant at/over it, None when the marker does not apply
(denied or pending grants — a fast DENY is not a rubber stamp — and
non-grant rows). A flag, never an enforcement.
Trait Implementations§
Source§impl Clone for EscalationRow
impl Clone for EscalationRow
Source§fn clone(&self) -> EscalationRow
fn clone(&self) -> EscalationRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EscalationRow
impl Debug for EscalationRow
Source§impl<'de> Deserialize<'de> for EscalationRow
impl<'de> Deserialize<'de> for EscalationRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EscalationRow
impl PartialEq for EscalationRow
Source§impl Serialize for EscalationRow
impl Serialize for EscalationRow
impl StructuralPartialEq for EscalationRow
Auto Trait Implementations§
impl Freeze for EscalationRow
impl RefUnwindSafe for EscalationRow
impl Send for EscalationRow
impl Sync for EscalationRow
impl Unpin for EscalationRow
impl UnsafeUnpin for EscalationRow
impl UnwindSafe for EscalationRow
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