pub struct AuditListOptions {
pub user_id: Option<String>,
pub cube_id: Option<String>,
pub since: Option<String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}Expand description
Options for listing audit events (filter + pagination).
Fields§
§user_id: Option<String>§cube_id: Option<String>§since: Option<String>ISO8601 timestamp; return events with timestamp >= since.
limit: Option<u32>§offset: Option<u32>Trait Implementations§
Source§impl Clone for AuditListOptions
impl Clone for AuditListOptions
Source§fn clone(&self) -> AuditListOptions
fn clone(&self) -> AuditListOptions
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 AuditListOptions
impl Debug for AuditListOptions
Source§impl Default for AuditListOptions
impl Default for AuditListOptions
Source§fn default() -> AuditListOptions
fn default() -> AuditListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuditListOptions
impl RefUnwindSafe for AuditListOptions
impl Send for AuditListOptions
impl Sync for AuditListOptions
impl Unpin for AuditListOptions
impl UnsafeUnpin for AuditListOptions
impl UnwindSafe for AuditListOptions
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