pub struct DecodedValue<'a> {
pub meta: CrdtMeta,
pub kind: EntryKind,
pub user_value: &'a [u8],
}Expand description
Decoded CRDT value.
Fields§
§meta: CrdtMeta§kind: EntryKind§user_value: &'a [u8]Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DecodedValue<'a>
impl<'a> RefUnwindSafe for DecodedValue<'a>
impl<'a> Send for DecodedValue<'a>
impl<'a> Sync for DecodedValue<'a>
impl<'a> Unpin for DecodedValue<'a>
impl<'a> UnsafeUnpin for DecodedValue<'a>
impl<'a> UnwindSafe for DecodedValue<'a>
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