pub struct WalStreamRecord {
pub lsn: u64,
pub data: Vec<u8>,
}Fields§
§lsn: u64§data: Vec<u8>Trait Implementations§
Source§impl Clone for WalStreamRecord
impl Clone for WalStreamRecord
Source§fn clone(&self) -> WalStreamRecord
fn clone(&self) -> WalStreamRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WalStreamRecord
impl Debug for WalStreamRecord
impl Eq for WalStreamRecord
Source§impl PartialEq for WalStreamRecord
impl PartialEq for WalStreamRecord
Source§fn eq(&self, other: &WalStreamRecord) -> bool
fn eq(&self, other: &WalStreamRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WalStreamRecord
Auto Trait Implementations§
impl Freeze for WalStreamRecord
impl RefUnwindSafe for WalStreamRecord
impl Send for WalStreamRecord
impl Sync for WalStreamRecord
impl Unpin for WalStreamRecord
impl UnsafeUnpin for WalStreamRecord
impl UnwindSafe for WalStreamRecord
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