pub struct GuardDecision {
pub operation: String,
pub risk_level: RiskLevel,
pub score: u32,
pub impact_summary: String,
pub confirmed: bool,
pub typed_phrase: Option<String>,
pub timestamp: String,
pub actor: ActorKind,
}Expand description
Recorded outcome of a single guard confirmation prompt.
Fields§
§operation: StringHuman-readable operation description.
risk_level: RiskLevelRisk level of this operation.
score: u32Numeric risk score.
impact_summary: StringOne-sentence human-readable impact summary.
confirmed: booltrue = user confirmed; false = user declined / blocked.
typed_phrase: Option<String>The phrase the user typed (or None for non-interactive runs).
timestamp: StringISO-8601 timestamp of the decision.
actor: ActorKindWhich actor made the decision.
Trait Implementations§
Source§impl Clone for GuardDecision
impl Clone for GuardDecision
Source§fn clone(&self) -> GuardDecision
fn clone(&self) -> GuardDecision
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 GuardDecision
impl Debug for GuardDecision
Source§impl<'de> Deserialize<'de> for GuardDecision
impl<'de> Deserialize<'de> for GuardDecision
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
Auto Trait Implementations§
impl Freeze for GuardDecision
impl RefUnwindSafe for GuardDecision
impl Send for GuardDecision
impl Sync for GuardDecision
impl Unpin for GuardDecision
impl UnsafeUnpin for GuardDecision
impl UnwindSafe for GuardDecision
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more