pub struct SwarmInfo {
pub node_id: Option<String>,
pub node_addr: Option<String>,
pub local_node_state: Option<LocalNodeState>,
pub control_available: Option<bool>,
pub error: Option<String>,
pub remote_managers: Option<Vec<PeerNode>>,
pub nodes: Option<i64>,
pub managers: Option<i64>,
pub cluster: Option<ClusterInfo>,
}
Expand description
Represents generic information about swarm.
Fields§
§node_id: Option<String>
Unique identifier of for this node in the swarm.
node_addr: Option<String>
IP address at which this node can be reached by other nodes in the swarm.
local_node_state: Option<LocalNodeState>
§control_available: Option<bool>
§error: Option<String>
§remote_managers: Option<Vec<PeerNode>>
List of ID’s and addresses of other managers in the swarm.
nodes: Option<i64>
Total number of nodes in the swarm.
managers: Option<i64>
Total number of managers in the swarm.
cluster: Option<ClusterInfo>
Trait Implementations§
source§impl<'de> Deserialize<'de> for SwarmInfo
impl<'de> Deserialize<'de> for SwarmInfo
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SwarmInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SwarmInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for SwarmInfo
impl Serialize for SwarmInfo
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SwarmInfo
Auto Trait Implementations§
impl Freeze for SwarmInfo
impl RefUnwindSafe for SwarmInfo
impl Send for SwarmInfo
impl Sync for SwarmInfo
impl Unpin for SwarmInfo
impl UnwindSafe for SwarmInfo
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)