Struct docker_api::api::node::opts::NodeUpdateOpts
source · [−]pub struct NodeUpdateOpts { /* private fields */ }
Available on crate feature
swarm
only.Implementations
sourceimpl NodeUpdateOpts
impl NodeUpdateOpts
sourcepub fn builder<V: Into<String>>(version: V) -> NodeUpdateOptsBuilder
pub fn builder<V: Into<String>>(version: V) -> NodeUpdateOptsBuilder
return a new instance of a builder for Opts
sourcepub fn labels<L, K, V>(self, labels: L) -> Self where
L: IntoIterator<Item = (K, V)>,
K: AsRef<str> + Serialize + Eq + Hash,
V: AsRef<str> + Serialize,
pub fn labels<L, K, V>(self, labels: L) -> Self where
L: IntoIterator<Item = (K, V)>,
K: AsRef<str> + Serialize + Eq + Hash,
V: AsRef<str> + Serialize,
User-defined key/value metadata
sourcepub fn availability(self, availability: Availability) -> Self
pub fn availability(self, availability: Availability) -> Self
Availability of the node.
pub fn serialize(&self) -> Result<String>
pub fn version(&self) -> &str
Trait Implementations
sourceimpl Debug for NodeUpdateOpts
impl Debug for NodeUpdateOpts
sourceimpl Serialize for NodeUpdateOpts
impl Serialize for NodeUpdateOpts
Auto Trait Implementations
impl RefUnwindSafe for NodeUpdateOpts
impl Send for NodeUpdateOpts
impl Sync for NodeUpdateOpts
impl Unpin for NodeUpdateOpts
impl UnwindSafe for NodeUpdateOpts
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more