pub struct IpamConfig {
pub plugin: String,
pub specific: HashMap<String, Value>,
}Expand description
IP Address Management configuration.
IPAM plugins will be invoked with the full NetworkConfig as input, but
should take their configuration from this section only.
Fields§
§plugin: StringName of the IPAM plugin binary on disk.
This is called type in the JSON.
specific: HashMap<String, Value>All other IPAM fields.
This is a serde(flatten)
field which aggregates any and all additional fields apart from the
plugin field above.
The spec describes nothing in particular for this section, so it is entirely up to plugins to interpret it as required.
Trait Implementations§
Source§impl Clone for IpamConfig
impl Clone for IpamConfig
Source§fn clone(&self) -> IpamConfig
fn clone(&self) -> IpamConfig
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 IpamConfig
impl Debug for IpamConfig
Source§impl<'de> Deserialize<'de> for IpamConfig
impl<'de> Deserialize<'de> for IpamConfig
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 IpamConfig
impl RefUnwindSafe for IpamConfig
impl Send for IpamConfig
impl Sync for IpamConfig
impl Unpin for IpamConfig
impl UnwindSafe for IpamConfig
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more