pub struct AmbientCheckResult {
pub response: String,
pub escalated: bool,
pub escalation_reason: Option<String>,
pub duration_ms: u64,
}Expand description
Result of an ambient check.
Fields§
§response: StringThe ambient model’s response.
escalated: boolWhether escalation was triggered.
escalation_reason: Option<String>The reason for escalation (if any).
duration_ms: u64Duration of the check.
Trait Implementations§
Source§impl Clone for AmbientCheckResult
impl Clone for AmbientCheckResult
Source§fn clone(&self) -> AmbientCheckResult
fn clone(&self) -> AmbientCheckResult
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 AmbientCheckResult
impl Debug for AmbientCheckResult
Auto Trait Implementations§
impl Freeze for AmbientCheckResult
impl RefUnwindSafe for AmbientCheckResult
impl Send for AmbientCheckResult
impl Sync for AmbientCheckResult
impl Unpin for AmbientCheckResult
impl UnsafeUnpin for AmbientCheckResult
impl UnwindSafe for AmbientCheckResult
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