pub struct AuditQuery {
pub namespace: Option<String>,
pub actor: Option<String>,
pub action: Option<String>,
pub from: Option<String>,
pub to: Option<String>,
pub success: Option<bool>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Expand description
Audit query parameters
Fields§
§namespace: Option<String>Filter by namespace
actor: Option<String>Filter by actor
action: Option<String>Filter by action
from: Option<String>Start time (ISO 8601)
to: Option<String>End time (ISO 8601)
success: Option<bool>Filter by success/failure
limit: Option<usize>Limit
offset: Option<usize>Offset
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 · 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 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