[][src]Struct libzmq::config::AuthConfig

pub struct AuthConfig { /* fields omitted */ }

A Configuration of the AuthServer.

A AuthClient must be used to communicate this configuration with the server.

Implementations

impl AuthConfig[src]

pub fn new() -> Self[src]

Create an empty AuthConfig.

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

Attempts to build a AuthClient and send the configuration to the AuthServer associated with the default global Ctx.

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

Attempts to build a AuthClient and send the configuration to the AuthServer associated with the context aliased by the CtxHandle.

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

Apply the configuration to the AuthClient which will send it to its associated AuthServer.

pub fn set_blacklist<I>(&mut self, maybe: Option<I>) where
    I: IntoIpAddrs
[src]

pub fn set_whitelist<I>(&mut self, maybe: Option<I>) where
    I: IntoIpAddrs
[src]

pub fn set_plain_registry<I, E>(&mut self, maybe: Option<I>) where
    I: IntoIterator<Item = E>,
    E: Into<PlainClientCreds>, 
[src]

pub fn set_curve_registry<I, E>(&mut self, maybe: Option<I>) where
    I: IntoIterator<Item = E>,
    E: Into<CurvePublicKey>, 
[src]

pub fn set_curve_auth(&mut self, maybe: Option<bool>)[src]

Trait Implementations

impl Clone for AuthConfig[src]

impl Debug for AuthConfig[src]

impl Default for AuthConfig[src]

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

impl Eq for AuthConfig[src]

impl Hash for AuthConfig[src]

impl PartialEq<AuthConfig> for AuthConfig[src]

impl Serialize for AuthConfig[src]

impl StructuralEq for AuthConfig[src]

impl StructuralPartialEq for AuthConfig[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>,