Struct cni_plugin::reply::IpamSuccessReply[][src]

pub struct IpamSuccessReply {
    pub cni_version: Version,
    pub ips: Vec<Ip>,
    pub routes: Vec<Route>,
    pub dns: Dns,
    pub specific: HashMap<String, Value>,
}

The reply structure used when returning an abbreviated IPAM success.

It is identical to SuccessReply except for the lack of the interfaces field.

Fields

cni_version: Version

The CNI version of the plugin input config.

ips: Vec<Ip>

The list of all IPs assigned by this plugin.

If prev_result was included in the input config and had IPs, they need to be carried on through into this list.

routes: Vec<Route>

The list of all routes created by this plugin.

If prev_result was included in the input config and had routes, they need to be carried on through into this list.

dns: Dns

Final DNS configuration for the namespace.

specific: HashMap<String, Value>

Custom reply fields.

Note that these are off-spec and may be discarded by libcni.

Trait Implementations

impl Clone for IpamSuccessReply[src]

impl Debug for IpamSuccessReply[src]

impl<'de> Deserialize<'de> for IpamSuccessReply[src]

impl<'de> ReplyPayload<'de> for IpamSuccessReply[src]

impl Serialize for IpamSuccessReply[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.