pub struct AuditListResult {
pub records: Vec<AuditRecord>,
pub total: u64,
}Expand description
Result of Request::AuditList: one page of matching records in chronological order
(oldest month first, in-file order within a month), plus the TOTAL match count so a caller
can page without a second counting call. total counts ALL matches, not the page.
Fields§
§records: Vec<AuditRecord>§total: u64Trait Implementations§
Source§impl Clone for AuditListResult
impl Clone for AuditListResult
Source§fn clone(&self) -> AuditListResult
fn clone(&self) -> AuditListResult
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 AuditListResult
impl Debug for AuditListResult
Source§impl<'de> Deserialize<'de> for AuditListResult
impl<'de> Deserialize<'de> for AuditListResult
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 AuditListResult
impl PartialEq for AuditListResult
Source§impl Serialize for AuditListResult
impl Serialize for AuditListResult
impl StructuralPartialEq for AuditListResult
Auto Trait Implementations§
impl Freeze for AuditListResult
impl RefUnwindSafe for AuditListResult
impl Send for AuditListResult
impl Sync for AuditListResult
impl Unpin for AuditListResult
impl UnsafeUnpin for AuditListResult
impl UnwindSafe for AuditListResult
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