pub struct GetAuditLogsParams {
pub tenant_id: String,
pub limit: Option<f64>,
pub skip: Option<f64>,
pub order: Option<SortDir>,
pub after: Option<f64>,
pub before: Option<f64>,
}Expand description
struct for passing parameters to the method get_audit_logs
Fields§
§tenant_id: String§limit: Option<f64>§skip: Option<f64>§order: Option<SortDir>§after: Option<f64>§before: Option<f64>Trait Implementations§
Source§impl Clone for GetAuditLogsParams
impl Clone for GetAuditLogsParams
Source§fn clone(&self) -> GetAuditLogsParams
fn clone(&self) -> GetAuditLogsParams
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 moreAuto Trait Implementations§
impl Freeze for GetAuditLogsParams
impl RefUnwindSafe for GetAuditLogsParams
impl Send for GetAuditLogsParams
impl Sync for GetAuditLogsParams
impl Unpin for GetAuditLogsParams
impl UnwindSafe for GetAuditLogsParams
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