pub struct NetworkConfigList {
pub name: String,
pub cni_version: String,
pub disable_check: bool,
pub plugins: Vec<NetworkConfig>,
pub bytes: Vec<u8>,
}Fields§
§name: String§cni_version: String§disable_check: bool§plugins: Vec<NetworkConfig>§bytes: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for NetworkConfigList
impl Clone for NetworkConfigList
Source§fn clone(&self) -> NetworkConfigList
fn clone(&self) -> NetworkConfigList
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 Default for NetworkConfigList
impl Default for NetworkConfigList
Source§fn default() -> NetworkConfigList
fn default() -> NetworkConfigList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkConfigList
impl<'de> Deserialize<'de> for NetworkConfigList
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
Auto Trait Implementations§
impl Freeze for NetworkConfigList
impl RefUnwindSafe for NetworkConfigList
impl Send for NetworkConfigList
impl Sync for NetworkConfigList
impl Unpin for NetworkConfigList
impl UnwindSafe for NetworkConfigList
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