#[repr(C)]pub struct WalEntry {
pub timestamp: u64,
pub node_id: u64,
pub edge_dst: u64,
pub x: f32,
pub y: f32,
pub z: f32,
pub edge_w: f32,
pub entry_type: u8,
pub _padding: [u8; 7],
pub tx_id: u64,
pub lsn: u64,
}Fields§
§timestamp: u64§node_id: u64§edge_dst: u64§x: f32§y: f32§z: f32§edge_w: f32§entry_type: u8§_padding: [u8; 7]§tx_id: u64§lsn: u64Trait Implementations§
impl Copy for WalEntry
impl Pod for WalEntry
Auto Trait Implementations§
impl Freeze for WalEntry
impl RefUnwindSafe for WalEntry
impl Send for WalEntry
impl Sync for WalEntry
impl Unpin for WalEntry
impl UnsafeUnpin for WalEntry
impl UnwindSafe for WalEntry
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.