pub struct AuditLogCursorSlice {
pub items: Vec<Model>,
pub total: u64,
pub has_more: bool,
}Expand description
Result of an audit log cursor query.
Fields§
§items: Vec<Model>Current page items.
total: u64Total rows matching the filters before cursor slicing.
has_more: boolWhether another page exists after this slice.
Trait Implementations§
Source§impl Clone for AuditLogCursorSlice
impl Clone for AuditLogCursorSlice
Source§fn clone(&self) -> AuditLogCursorSlice
fn clone(&self) -> AuditLogCursorSlice
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 AuditLogCursorSlice
impl Debug for AuditLogCursorSlice
Source§impl PartialEq for AuditLogCursorSlice
impl PartialEq for AuditLogCursorSlice
Source§fn eq(&self, other: &AuditLogCursorSlice) -> bool
fn eq(&self, other: &AuditLogCursorSlice) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuditLogCursorSlice
Auto Trait Implementations§
impl Freeze for AuditLogCursorSlice
impl RefUnwindSafe for AuditLogCursorSlice
impl Send for AuditLogCursorSlice
impl Sync for AuditLogCursorSlice
impl Unpin for AuditLogCursorSlice
impl UnsafeUnpin for AuditLogCursorSlice
impl UnwindSafe for AuditLogCursorSlice
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more