pub struct PolicyDecisionRecorded {
pub thread_id: ThreadId,
pub turn_id: TurnId,
pub tool_id: String,
pub tool_name: String,
pub mode: PolicyMode,
pub decision: PolicyDecision,
pub timestamp: OffsetDateTime,
}Fields§
§thread_id: ThreadId§turn_id: TurnId§tool_id: String§tool_name: String§mode: PolicyMode§decision: PolicyDecision§timestamp: OffsetDateTimeTrait Implementations§
Source§impl Clone for PolicyDecisionRecorded
impl Clone for PolicyDecisionRecorded
Source§fn clone(&self) -> PolicyDecisionRecorded
fn clone(&self) -> PolicyDecisionRecorded
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 PolicyDecisionRecorded
impl Debug for PolicyDecisionRecorded
Source§impl<'de> Deserialize<'de> for PolicyDecisionRecorded
impl<'de> Deserialize<'de> for PolicyDecisionRecorded
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 PolicyDecisionRecorded
impl RefUnwindSafe for PolicyDecisionRecorded
impl Send for PolicyDecisionRecorded
impl Sync for PolicyDecisionRecorded
impl Unpin for PolicyDecisionRecorded
impl UnsafeUnpin for PolicyDecisionRecorded
impl UnwindSafe for PolicyDecisionRecorded
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