pub struct LWWEntry {
pub value: Value,
pub timestamp_ms: i64,
pub writer_id: String,
}Expand description
Single LWW entry with value, timestamp, and writer identity.
Fields§
§value: Value§timestamp_ms: i64§writer_id: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LWWEntry
impl RefUnwindSafe for LWWEntry
impl Send for LWWEntry
impl Sync for LWWEntry
impl Unpin for LWWEntry
impl UnsafeUnpin for LWWEntry
impl UnwindSafe for LWWEntry
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