pub enum AuditEventKind {
Request,
Response,
CapabilityUsage,
PolicyDecision,
Custom,
}Expand description
Kind of encrypted enterprise audit event.
Variants§
Request
A user or agent request.
Response
A service or agent response.
CapabilityUsage
An MCP, tool, skill, or CLI usage observation.
PolicyDecision
A policy allow or deny result.
Custom
An application-defined event.
Trait Implementations§
Source§impl Clone for AuditEventKind
impl Clone for AuditEventKind
Source§fn clone(&self) -> AuditEventKind
fn clone(&self) -> AuditEventKind
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 moreimpl Copy for AuditEventKind
Source§impl Debug for AuditEventKind
impl Debug for AuditEventKind
impl Eq for AuditEventKind
Source§impl PartialEq for AuditEventKind
impl PartialEq for AuditEventKind
impl StructuralPartialEq for AuditEventKind
Auto Trait Implementations§
impl Freeze for AuditEventKind
impl RefUnwindSafe for AuditEventKind
impl Send for AuditEventKind
impl Sync for AuditEventKind
impl Unpin for AuditEventKind
impl UnsafeUnpin for AuditEventKind
impl UnwindSafe for AuditEventKind
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