pub struct PgLsn(pub u64);Expand description
PostgreSQL PG_LSN type – a 64-bit Log Sequence Number.
Represents a position in the WAL (write-ahead log). Wire format is 8 bytes, big-endian u64 (sent as i64 on the wire).
Tuple Fields§
§0: u64Trait Implementations§
Source§impl Ord for PgLsn
impl Ord for PgLsn
Source§impl PartialOrd for PgLsn
impl PartialOrd for PgLsn
Source§impl ToSql for PgLsn
impl ToSql for PgLsn
impl Copy for PgLsn
impl Eq for PgLsn
impl StructuralPartialEq for PgLsn
Auto Trait Implementations§
impl Freeze for PgLsn
impl RefUnwindSafe for PgLsn
impl Send for PgLsn
impl Sync for PgLsn
impl Unpin for PgLsn
impl UnsafeUnpin for PgLsn
impl UnwindSafe for PgLsn
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.