pub struct ReplicationSlotInfo {
pub slot_type: Option<String>,
pub restart_lsn: Option<Lsn>,
pub restart_tli: Option<i32>,
}Expand description
Information about a replication slot returned by READ_REPLICATION_SLOT.
Fields§
§slot_type: Option<String>§restart_lsn: Option<Lsn>§restart_tli: Option<i32>Trait Implementations§
Source§impl Clone for ReplicationSlotInfo
impl Clone for ReplicationSlotInfo
Source§fn clone(&self) -> ReplicationSlotInfo
fn clone(&self) -> ReplicationSlotInfo
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 moreAuto Trait Implementations§
impl Freeze for ReplicationSlotInfo
impl RefUnwindSafe for ReplicationSlotInfo
impl Send for ReplicationSlotInfo
impl Sync for ReplicationSlotInfo
impl Unpin for ReplicationSlotInfo
impl UnsafeUnpin for ReplicationSlotInfo
impl UnwindSafe for ReplicationSlotInfo
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