pub struct AgentDurableAuditInput {
pub operation: String,
pub interface: String,
pub request_id: String,
pub trace_id: String,
pub status: AuditStatus,
pub actor: Option<String>,
pub source_scope: Option<String>,
pub graph_version: u64,
pub detail_json: String,
pub message: Option<String>,
}Expand description
Durable audit event input accepted from resident agent adapters.
Fields§
§operation: String§interface: String§request_id: String§trace_id: String§status: AuditStatus§actor: Option<String>§source_scope: Option<String>§graph_version: u64§detail_json: String§message: Option<String>Trait Implementations§
Source§impl Clone for AgentDurableAuditInput
impl Clone for AgentDurableAuditInput
Source§fn clone(&self) -> AgentDurableAuditInput
fn clone(&self) -> AgentDurableAuditInput
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 moreAuto Trait Implementations§
impl Freeze for AgentDurableAuditInput
impl RefUnwindSafe for AgentDurableAuditInput
impl Send for AgentDurableAuditInput
impl Sync for AgentDurableAuditInput
impl Unpin for AgentDurableAuditInput
impl UnsafeUnpin for AgentDurableAuditInput
impl UnwindSafe for AgentDurableAuditInput
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