pub struct WalInspectionRow {
pub offset: u64,
pub lsn: u64,
pub sequence: u64,
pub record_type: WalRecordType,
pub key_len: Option<usize>,
pub value_len: Option<usize>,
}Fields§
§offset: u64§lsn: u64§sequence: u64§record_type: WalRecordType§key_len: Option<usize>§value_len: Option<usize>Trait Implementations§
Source§impl Clone for WalInspectionRow
impl Clone for WalInspectionRow
Source§fn clone(&self) -> WalInspectionRow
fn clone(&self) -> WalInspectionRow
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 WalInspectionRow
impl Debug for WalInspectionRow
impl Eq for WalInspectionRow
Source§impl PartialEq for WalInspectionRow
impl PartialEq for WalInspectionRow
Source§fn eq(&self, other: &WalInspectionRow) -> bool
fn eq(&self, other: &WalInspectionRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WalInspectionRow
Auto Trait Implementations§
impl Freeze for WalInspectionRow
impl RefUnwindSafe for WalInspectionRow
impl Send for WalInspectionRow
impl Sync for WalInspectionRow
impl Unpin for WalInspectionRow
impl UnsafeUnpin for WalInspectionRow
impl UnwindSafe for WalInspectionRow
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