pub struct ClusterInfo {
pub id: Option<String>,
pub version: Option<String>,
pub config_hash: Option<String>,
pub internode_url: Option<String>,
pub hostname: Option<String>,
pub last_ping: Option<i32>,
pub is_alive: Option<bool>,
}
Fields§
§id: Option<String>
The unique ID for the node
version: Option<String>
The server version the node is on
config_hash: Option<String>
The hash of the configuartion file the node is using
internode_url: Option<String>
The URL used to communicate with those node from other nodes
hostname: Option<String>
The hostname for this node
last_ping: Option<i32>
The time of the last ping to this node
is_alive: Option<bool>
Whether or not the node is alive and well
Implementations§
Source§impl ClusterInfo
impl ClusterInfo
pub fn new() -> ClusterInfo
Trait Implementations§
Source§impl Clone for ClusterInfo
impl Clone for ClusterInfo
Source§fn clone(&self) -> ClusterInfo
fn clone(&self) -> ClusterInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ClusterInfo
impl Debug for ClusterInfo
Source§impl Default for ClusterInfo
impl Default for ClusterInfo
Source§fn default() -> ClusterInfo
fn default() -> ClusterInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterInfo
impl<'de> Deserialize<'de> for ClusterInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ClusterInfo
impl PartialEq for ClusterInfo
Source§impl Serialize for ClusterInfo
impl Serialize for ClusterInfo
impl StructuralPartialEq for ClusterInfo
Auto Trait Implementations§
impl Freeze for ClusterInfo
impl RefUnwindSafe for ClusterInfo
impl Send for ClusterInfo
impl Sync for ClusterInfo
impl Unpin for ClusterInfo
impl UnwindSafe for ClusterInfo
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