pub struct ReplicationKeepalive {
pub wal_end: u64,
pub server_time_micros: i64,
pub reply_requested: bool,
}Expand description
Keepalive message from CopyData('k' ...).
Fields§
§wal_end: u64Current WAL end on server.
server_time_micros: i64Server clock in microseconds since PostgreSQL epoch (2000-01-01).
reply_requested: boolWhether server requests an immediate status reply.
Trait Implementations§
Source§impl Clone for ReplicationKeepalive
impl Clone for ReplicationKeepalive
Source§fn clone(&self) -> ReplicationKeepalive
fn clone(&self) -> ReplicationKeepalive
Returns a duplicate of the value. Read more
1.0.0 · 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 ReplicationKeepalive
impl Debug for ReplicationKeepalive
Source§impl PartialEq for ReplicationKeepalive
impl PartialEq for ReplicationKeepalive
impl Eq for ReplicationKeepalive
impl StructuralPartialEq for ReplicationKeepalive
Auto Trait Implementations§
impl Freeze for ReplicationKeepalive
impl RefUnwindSafe for ReplicationKeepalive
impl Send for ReplicationKeepalive
impl Sync for ReplicationKeepalive
impl Unpin for ReplicationKeepalive
impl UnsafeUnpin for ReplicationKeepalive
impl UnwindSafe for ReplicationKeepalive
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