pub struct AppendLogPage<T> {
pub entries: Vec<AppendLogEntry<T>>,
pub next_after: Option<u64>,
pub done: bool,
}Expand description
AppendLogPage data container.
Fields§
§entries: Vec<AppendLogEntry<T>>entries field for entries.
next_after: Option<u64>next_after field for next after.
done: booldone field for done.
Trait Implementations§
Source§impl<T: Clone> Clone for AppendLogPage<T>
impl<T: Clone> Clone for AppendLogPage<T>
Source§fn clone(&self) -> AppendLogPage<T>
fn clone(&self) -> AppendLogPage<T>
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<T: Debug> Debug for AppendLogPage<T>
impl<T: Debug> Debug for AppendLogPage<T>
Source§impl<T: PartialEq> PartialEq for AppendLogPage<T>
impl<T: PartialEq> PartialEq for AppendLogPage<T>
impl<T> StructuralPartialEq for AppendLogPage<T>
Auto Trait Implementations§
impl<T> Freeze for AppendLogPage<T>
impl<T> RefUnwindSafe for AppendLogPage<T>where
T: RefUnwindSafe,
impl<T> Send for AppendLogPage<T>where
T: Send,
impl<T> Sync for AppendLogPage<T>where
T: Sync,
impl<T> Unpin for AppendLogPage<T>where
T: Unpin,
impl<T> UnsafeUnpin for AppendLogPage<T>
impl<T> UnwindSafe for AppendLogPage<T>where
T: UnwindSafe,
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