pub struct AuditRecords {
pub offset: Option<i32>,
pub limit: Option<i32>,
pub total: Option<i64>,
pub records: Option<Vec<AuditRecordBean>>,
}
Expand description
AuditRecords : Container for a list of audit records.
Fields§
§offset: Option<i32>
The number of audit items skipped before the first item in this list.
limit: Option<i32>
The requested or default limit on the number of audit items to be returned.
total: Option<i64>
The total number of audit items returned.
records: Option<Vec<AuditRecordBean>>
The list of audit items.
Implementations§
Source§impl AuditRecords
impl AuditRecords
Sourcepub fn new() -> AuditRecords
pub fn new() -> AuditRecords
Container for a list of audit records.
Trait Implementations§
Source§impl Clone for AuditRecords
impl Clone for AuditRecords
Source§fn clone(&self) -> AuditRecords
fn clone(&self) -> AuditRecords
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 AuditRecords
impl Debug for AuditRecords
Source§impl Default for AuditRecords
impl Default for AuditRecords
Source§fn default() -> AuditRecords
fn default() -> AuditRecords
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditRecords
impl<'de> Deserialize<'de> for AuditRecords
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 AuditRecords
impl PartialEq for AuditRecords
Source§impl Serialize for AuditRecords
impl Serialize for AuditRecords
impl StructuralPartialEq for AuditRecords
Auto Trait Implementations§
impl Freeze for AuditRecords
impl RefUnwindSafe for AuditRecords
impl Send for AuditRecords
impl Sync for AuditRecords
impl Unpin for AuditRecords
impl UnwindSafe for AuditRecords
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