pub struct LogCursorMeta {
pub next_cursor: Option<Uuid>,
pub has_more: bool,
}Expand description
Cursor-based pagination metadata for log entries.
Fields§
§next_cursor: Option<Uuid>Cursor to pass for the next page. None when there are no more entries.
has_more: boolWhether more entries exist after this page.
Trait Implementations§
Source§impl Debug for LogCursorMeta
impl Debug for LogCursorMeta
Auto Trait Implementations§
impl Freeze for LogCursorMeta
impl RefUnwindSafe for LogCursorMeta
impl Send for LogCursorMeta
impl Sync for LogCursorMeta
impl Unpin for LogCursorMeta
impl UnsafeUnpin for LogCursorMeta
impl UnwindSafe for LogCursorMeta
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