Struct docker_api_stubs::models::NodeStatus
source · [−]pub struct NodeStatus {
pub addr: Option<String>,
pub message: Option<String>,
pub state: Option<String>,
}
Expand description
NodeStatus represents the status of a node.
It provides the current status of the node, as seen by the manager.
Fields
addr: Option<String>
IP address of the node.
message: Option<String>
state: Option<String>
Trait Implementations
sourceimpl Clone for NodeStatus
impl Clone for NodeStatus
sourcefn clone(&self) -> NodeStatus
fn clone(&self) -> NodeStatus
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for NodeStatus
impl Debug for NodeStatus
sourceimpl<'de> Deserialize<'de> for NodeStatus
impl<'de> Deserialize<'de> for NodeStatus
sourcefn 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
sourceimpl PartialEq<NodeStatus> for NodeStatus
impl PartialEq<NodeStatus> for NodeStatus
sourcefn eq(&self, other: &NodeStatus) -> bool
fn eq(&self, other: &NodeStatus) -> bool
sourceimpl Serialize for NodeStatus
impl Serialize for NodeStatus
impl StructuralPartialEq for NodeStatus
Auto Trait Implementations
impl RefUnwindSafe for NodeStatus
impl Send for NodeStatus
impl Sync for NodeStatus
impl Unpin for NodeStatus
impl UnwindSafe for NodeStatus
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