pub struct WriteEntry {
pub op: Operation,
pub record: Arc<Record>,
pub old_value_len: usize,
pub work_status: AtomicU32,
pub retry_count: AtomicU32,
pub timestamp: Instant,
}Expand description
Write entry for buffered operations
Fields§
§op: Operation§record: Arc<Record>§old_value_len: usize§work_status: AtomicU32§retry_count: AtomicU32§timestamp: InstantAuto Trait Implementations§
impl !Freeze for WriteEntry
impl !RefUnwindSafe for WriteEntry
impl Send for WriteEntry
impl Sync for WriteEntry
impl Unpin for WriteEntry
impl !UnwindSafe for WriteEntry
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