pub struct GetAuditLogsParams {
pub time_period: Option<String>,
pub cursor: Option<String>,
}
Expand description
struct for passing parameters to the method [get_audit_logs
]
Fields§
§time_period: Option<String>
The last time period to fetch audit logs
cursor: Option<String>
The next id to start fetch audit logs from
Implementations§
Source§impl GetAuditLogsParams
impl GetAuditLogsParams
Sourcepub fn builder() -> GetAuditLogsParamsBuilder
pub fn builder() -> GetAuditLogsParamsBuilder
Create an instance of GetAuditLogsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetAuditLogsParams
impl Clone for GetAuditLogsParams
Source§fn clone(&self) -> GetAuditLogsParams
fn clone(&self) -> GetAuditLogsParams
Returns a copy 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