pub struct SentinelMasterInfo {Show 20 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 config_epoch: usize,
pub num_slaves: usize,
pub num_other_sentinels: usize,
pub quorum: usize,
pub failover_timeout: u64,
pub parallel_syncs: 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
§config_epoch: usize
§num_slaves: usize
§num_other_sentinels: usize
§quorum: usize
§failover_timeout: u64
§parallel_syncs: usize
Trait Implementations§
Source§impl Debug for SentinelMasterInfo
impl Debug for SentinelMasterInfo
Source§impl FromValue for SentinelMasterInfo
impl FromValue for SentinelMasterInfo
Auto Trait Implementations§
impl Freeze for SentinelMasterInfo
impl RefUnwindSafe for SentinelMasterInfo
impl Send for SentinelMasterInfo
impl Sync for SentinelMasterInfo
impl Unpin for SentinelMasterInfo
impl UnwindSafe for SentinelMasterInfo
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