pub struct AppendLogEntry<T> {
pub key: String,
pub seq: u64,
pub value: T,
}Expand description
AppendLogEntry data container.
Fields§
§key: Stringkey field for key.
seq: u64seq field for seq.
value: Tvalue field for value.
Trait Implementations§
Source§impl<T: Clone> Clone for AppendLogEntry<T>
impl<T: Clone> Clone for AppendLogEntry<T>
Source§fn clone(&self) -> AppendLogEntry<T>
fn clone(&self) -> AppendLogEntry<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 AppendLogEntry<T>
impl<T: Debug> Debug for AppendLogEntry<T>
Source§impl<T: PartialEq> PartialEq for AppendLogEntry<T>
impl<T: PartialEq> PartialEq for AppendLogEntry<T>
impl<T> StructuralPartialEq for AppendLogEntry<T>
Auto Trait Implementations§
impl<T> Freeze for AppendLogEntry<T>where
T: Freeze,
impl<T> RefUnwindSafe for AppendLogEntry<T>where
T: RefUnwindSafe,
impl<T> Send for AppendLogEntry<T>where
T: Send,
impl<T> Sync for AppendLogEntry<T>where
T: Sync,
impl<T> Unpin for AppendLogEntry<T>where
T: Unpin,
impl<T> UnsafeUnpin for AppendLogEntry<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for AppendLogEntry<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