Struct redis_driver::SentinelReplicaInfo
source · pub struct SentinelReplicaInfo {Show 21 fields
pub name: String,
pub ip: String,
pub port: u16,
pub runid: String,
pub flags: String,
pub link_pending_commands: usize,
pub link_refcount: usize,
pub last_ping_sent: usize,
pub last_ok_ping_reply: usize,
pub last_ping_reply: usize,
pub down_after_milliseconds: u64,
pub info_refresh: u64,
pub role_reported: String,
pub role_reported_time: u64,
pub master_link_down_time: u64,
pub master_link_status: String,
pub master_host: String,
pub master_port: u16,
pub slave_priority: u64,
pub slave_replica_offset: u64,
pub replica_announed: usize,
}
Fields
name: String
ip: String
port: u16
runid: String
flags: String
link_pending_commands: usize
link_refcount: usize
last_ping_sent: usize
last_ok_ping_reply: usize
last_ping_reply: usize
down_after_milliseconds: u64
info_refresh: u64
role_reported: String
role_reported_time: u64
master_link_down_time: u64
master_link_status: String
master_host: String
master_port: u16
slave_priority: u64
slave_replica_offset: u64
replica_announed: usize
Trait Implementations
sourceimpl Debug for SentinelReplicaInfo
impl Debug for SentinelReplicaInfo
Auto Trait Implementations
impl RefUnwindSafe for SentinelReplicaInfo
impl Send for SentinelReplicaInfo
impl Sync for SentinelReplicaInfo
impl Unpin for SentinelReplicaInfo
impl UnwindSafe for SentinelReplicaInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more