Struct cni_plugin::reply::SuccessReply[][src]

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

The reply structure used when returning a success.

Fields

cni_version: Version

The CNI version of the plugin input config.

interfaces: Vec<Interface>

The list of all interfaces created by this plugin.

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

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.

Implementations

impl SuccessReply[src]

pub fn into_ipam(self) -> Option<IpamSuccessReply>[src]

Cast into an abbreviated success reply if the interface list is empty.

Trait Implementations

impl Clone for SuccessReply[src]

impl Debug for SuccessReply[src]

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

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

impl Serialize for SuccessReply[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.