pub struct MetaOp {
pub op_id: OpId,
pub op_data: Bytes,
}Expand description
An op with metadata.
This is the basic unit of data in the kitsune2 system.
Fields§
§op_id: OpIdThe id of the op.
op_data: BytesThe actual op data.
Trait Implementations§
impl Eq for MetaOp
impl StructuralPartialEq for MetaOp
Auto Trait Implementations§
impl !Freeze for MetaOp
impl RefUnwindSafe for MetaOp
impl Send for MetaOp
impl Sync for MetaOp
impl Unpin for MetaOp
impl UnwindSafe for MetaOp
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