pub struct Node {
pub id: Option<String>,
pub version: Option<ObjectVersion>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub spec: Option<NodeSpec>,
pub description: Option<NodeDescription>,
pub status: Option<NodeStatus>,
pub manager_status: Option<ManagerStatus>,
}
Fields§
§id: Option<String>
§version: Option<ObjectVersion>
§created_at: Option<String>
Date and time at which the node was added to the swarm in RFC 3339 format with nano-seconds.
updated_at: Option<String>
Date and time at which the node was last updated in RFC 3339 format with nano-seconds.
spec: Option<NodeSpec>
§description: Option<NodeDescription>
§status: Option<NodeStatus>
§manager_status: Option<ManagerStatus>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Node, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Node, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for Node
impl Serialize for Node
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 Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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
)