Struct docker_api_stubs::models::Node
source · [−]pub struct Node {
pub created_at: Option<DateTime<Utc>>,
pub description: Option<NodeDescription>,
pub id: Option<String>,
pub manager_status: Option<ManagerStatus>,
pub spec: Option<NodeSpec>,
pub status: Option<NodeStatus>,
pub updated_at: Option<DateTime<Utc>>,
pub version: Option<ObjectVersion>,
}
Fields
created_at: Option<DateTime<Utc>>
Date and time at which the node was added to the swarm in RFC 3339 format with nano-seconds.
description: Option<NodeDescription>
id: Option<String>
manager_status: Option<ManagerStatus>
spec: Option<NodeSpec>
status: Option<NodeStatus>
updated_at: Option<DateTime<Utc>>
Date and time at which the node was last updated in RFC 3339 format with nano-seconds.
version: Option<ObjectVersion>
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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
impl StructuralPartialEq for Node
Auto Trait Implementations
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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