pub struct FeedFrame {
pub offset: u64,
pub argv: Vec<Vec<u8>>,
}Expand description
One change frame from Connection::feed_read.
Fields§
§offset: u64Stream offset (monotonic within a generation).
argv: Vec<Vec<u8>>The applied effect’s argv (the same frame the AOF / a replica
sees), e.g. ["SET", "k", "v"].
Trait Implementations§
impl Eq for FeedFrame
impl StructuralPartialEq for FeedFrame
Auto Trait Implementations§
impl Freeze for FeedFrame
impl RefUnwindSafe for FeedFrame
impl Send for FeedFrame
impl Sync for FeedFrame
impl Unpin for FeedFrame
impl UnsafeUnpin for FeedFrame
impl UnwindSafe for FeedFrame
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