pub struct ContainerdInfo {
pub address: Option<String>,
pub namespaces: Option<ContainerdInfoNamespaces>,
}Expand description
Information for connecting to the containerd instance that is used by the daemon. This is included for debugging purposes only.
Fields§
§address: Option<String>The address of the containerd socket.
namespaces: Option<ContainerdInfoNamespaces>Trait Implementations§
Source§impl Clone for ContainerdInfo
impl Clone for ContainerdInfo
Source§fn clone(&self) -> ContainerdInfo
fn clone(&self) -> ContainerdInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContainerdInfo
impl Debug for ContainerdInfo
Source§impl Default for ContainerdInfo
impl Default for ContainerdInfo
Source§fn default() -> ContainerdInfo
fn default() -> ContainerdInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerdInfo
impl<'de> Deserialize<'de> for ContainerdInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerdInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerdInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContainerdInfo
impl PartialEq for ContainerdInfo
Source§impl Serialize for ContainerdInfo
impl Serialize for ContainerdInfo
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 ContainerdInfo
Auto Trait Implementations§
impl Freeze for ContainerdInfo
impl RefUnwindSafe for ContainerdInfo
impl Send for ContainerdInfo
impl Sync for ContainerdInfo
impl Unpin for ContainerdInfo
impl UnsafeUnpin for ContainerdInfo
impl UnwindSafe for ContainerdInfo
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