pub struct DecodedFrame {
pub offset: u64,
pub argv: Argv,
}Expand description
A decoded mutation frame the replica should apply to its local
store. Ownership of the Argv passes to the caller.
Fields§
§offset: u64Monotonic offset the primary assigned at apply-time.
argv: ArgvWire-decoded argv — feed to the dispatcher the same way AOF replay does (cmd name + arg bytes).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecodedFrame
impl RefUnwindSafe for DecodedFrame
impl Send for DecodedFrame
impl Sync for DecodedFrame
impl Unpin for DecodedFrame
impl UnsafeUnpin for DecodedFrame
impl UnwindSafe for DecodedFrame
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