[][src]Struct libzmq::config::DishConfig

pub struct DishConfig { /* fields omitted */ }

A configuration for a Dish.

Especially helpfull in config files.

Implementations

impl DishConfig[src]

pub fn new() -> Self[src]

pub fn build(&self) -> Result<Dish, Error>[src]

pub fn with_ctx(&self, handle: CtxHandle) -> Result<Dish, Error>[src]

pub fn groups(&self) -> Option<&[Group]>[src]

pub fn set_groups<I>(&mut self, maybe_groups: Option<I>) where
    I: IntoIterator<Item = Group>, 
[src]

pub fn apply(&self, dish: &Dish) -> Result<(), Error>[src]

Trait Implementations

impl Clone for DishConfig[src]

impl ConfigureRecv for DishConfig[src]

impl ConfigureSocket for DishConfig[src]

impl Debug for DishConfig[src]

impl Default for DishConfig[src]

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

impl Eq for DishConfig[src]

impl Hash for DishConfig[src]

impl PartialEq<DishConfig> for DishConfig[src]

impl Serialize for DishConfig[src]

impl StructuralEq for DishConfig[src]

impl StructuralPartialEq for DishConfig[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,