pub struct AuditEventListQuery {
pub customer_id: Option<String>,
pub actor: Option<String>,
pub event: Option<String>,
pub created_from: Option<i64>,
pub created_to: Option<i64>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}Fields§
§customer_id: Option<String>§actor: Option<String>§event: Option<String>§created_from: Option<i64>§created_to: Option<i64>§limit: Option<i32>§offset: Option<i32>Trait Implementations§
Source§impl Clone for AuditEventListQuery
impl Clone for AuditEventListQuery
Source§fn clone(&self) -> AuditEventListQuery
fn clone(&self) -> AuditEventListQuery
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 AuditEventListQuery
impl Debug for AuditEventListQuery
Source§impl Default for AuditEventListQuery
impl Default for AuditEventListQuery
Source§fn default() -> AuditEventListQuery
fn default() -> AuditEventListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditEventListQuery
impl<'de> Deserialize<'de> for AuditEventListQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuditEventListQuery
impl PartialEq for AuditEventListQuery
Source§impl Serialize for AuditEventListQuery
impl Serialize for AuditEventListQuery
impl Eq for AuditEventListQuery
impl StructuralPartialEq for AuditEventListQuery
Auto Trait Implementations§
impl Freeze for AuditEventListQuery
impl RefUnwindSafe for AuditEventListQuery
impl Send for AuditEventListQuery
impl Sync for AuditEventListQuery
impl Unpin for AuditEventListQuery
impl UnwindSafe for AuditEventListQuery
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