pub struct AuditQuery {
pub session_id: Option<String>,
pub signer_id: Option<String>,
pub event_type: Option<String>,
pub time_start: Option<DateTime<Utc>>,
pub time_end: Option<DateTime<Utc>>,
}Expand description
Structured query filter for the audit log. All fields are optional;
None means “no filter on this dimension”.
Fields§
§session_id: Option<String>Filter by session ID.
signer_id: Option<String>Filter by signer ID (matches any event involving this signer).
event_type: Option<String>Filter by event type name (e.g., “session_created”, “aggregated”).
time_start: Option<DateTime<Utc>>Filter: events at or after this time.
time_end: Option<DateTime<Utc>>Filter: events at or before this time.
Implementations§
Source§impl AuditQuery
impl AuditQuery
Trait Implementations§
Source§impl Clone for AuditQuery
impl Clone for AuditQuery
Source§fn clone(&self) -> AuditQuery
fn clone(&self) -> AuditQuery
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 AuditQuery
impl Debug for AuditQuery
Source§impl Default for AuditQuery
impl Default for AuditQuery
Source§fn default() -> AuditQuery
fn default() -> AuditQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuditQuery
impl RefUnwindSafe for AuditQuery
impl Send for AuditQuery
impl Sync for AuditQuery
impl Unpin for AuditQuery
impl UnsafeUnpin for AuditQuery
impl UnwindSafe for AuditQuery
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