pub struct IdentifySystem {
pub system_id: String,
pub timeline: u32,
pub xlog_pos: String,
pub dbname: Option<String>,
}Expand description
Output of IDENTIFY_SYSTEM.
Fields§
§system_id: StringCluster system identifier.
timeline: u32Current timeline ID.
xlog_pos: StringCurrent WAL/LSN position as text (e.g. 0/16B6C50).
dbname: Option<String>Database name for logical replication sessions (if provided by server).
Trait Implementations§
Source§impl Clone for IdentifySystem
impl Clone for IdentifySystem
Source§fn clone(&self) -> IdentifySystem
fn clone(&self) -> IdentifySystem
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 IdentifySystem
impl Debug for IdentifySystem
Source§impl PartialEq for IdentifySystem
impl PartialEq for IdentifySystem
impl Eq for IdentifySystem
impl StructuralPartialEq for IdentifySystem
Auto Trait Implementations§
impl Freeze for IdentifySystem
impl RefUnwindSafe for IdentifySystem
impl Send for IdentifySystem
impl Sync for IdentifySystem
impl Unpin for IdentifySystem
impl UnsafeUnpin for IdentifySystem
impl UnwindSafe for IdentifySystem
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