pub struct AuditTrailQuery {
pub from_us: i64,
pub to_us: i64,
pub domain: Option<String>,
pub event_type: Option<String>,
}Expand description
Input for querying events within a time range, optionally filtered by domain and type.
Fields§
§from_us: i64Start of the time range (inclusive), as microseconds since epoch.
to_us: i64End of the time range (inclusive), as microseconds since epoch.
domain: Option<String>Optional domain filter (e.g., “property”, “justice”).
event_type: Option<String>Optional event type filter (e.g., “ownership_transferred”).
Trait Implementations§
Source§impl Clone for AuditTrailQuery
impl Clone for AuditTrailQuery
Source§fn clone(&self) -> AuditTrailQuery
fn clone(&self) -> AuditTrailQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuditTrailQuery
impl Debug for AuditTrailQuery
Source§impl<'de> Deserialize<'de> for AuditTrailQuery
impl<'de> Deserialize<'de> for AuditTrailQuery
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
Auto Trait Implementations§
impl Freeze for AuditTrailQuery
impl RefUnwindSafe for AuditTrailQuery
impl Send for AuditTrailQuery
impl Sync for AuditTrailQuery
impl Unpin for AuditTrailQuery
impl UnsafeUnpin for AuditTrailQuery
impl UnwindSafe for AuditTrailQuery
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