pub struct ServiceOverlayStatus {
pub service: String,
pub mode: OverlayMode,
pub bridges_by_node: HashMap<String, BridgeInfo>,
}Expand description
Status of a service’s overlay across the cluster.
Fields§
§service: String§mode: OverlayModeMode the daemon resolved for this service (after resolve).
bridges_by_node: HashMap<String, BridgeInfo>One entry per node where this service has at least one container attached. Keys are node IDs as stringified.
Trait Implementations§
Source§impl Clone for ServiceOverlayStatus
impl Clone for ServiceOverlayStatus
Source§fn clone(&self) -> ServiceOverlayStatus
fn clone(&self) -> ServiceOverlayStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for ServiceOverlayStatus
impl ComposeSchema for ServiceOverlayStatus
Source§impl Debug for ServiceOverlayStatus
impl Debug for ServiceOverlayStatus
Source§impl<'de> Deserialize<'de> for ServiceOverlayStatus
impl<'de> Deserialize<'de> for ServiceOverlayStatus
Source§fn 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 Eq for ServiceOverlayStatus
Source§impl PartialEq for ServiceOverlayStatus
impl PartialEq for ServiceOverlayStatus
Source§fn eq(&self, other: &ServiceOverlayStatus) -> bool
fn eq(&self, other: &ServiceOverlayStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceOverlayStatus
impl Serialize for ServiceOverlayStatus
impl StructuralPartialEq for ServiceOverlayStatus
Auto Trait Implementations§
impl Freeze for ServiceOverlayStatus
impl RefUnwindSafe for ServiceOverlayStatus
impl Send for ServiceOverlayStatus
impl Sync for ServiceOverlayStatus
impl Unpin for ServiceOverlayStatus
impl UnsafeUnpin for ServiceOverlayStatus
impl UnwindSafe for ServiceOverlayStatus
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.