[][src]Struct nsq_client::Config

pub struct Config {
    pub client_id: Option<String>,
    pub hostname: Option<String>,
    pub feature_negotiation: bool,
    pub heartbeat_interval: i64,
    pub output_buffer_size: u64,
    pub output_buffer_timeout: u32,
    pub tls_v1: bool,
    pub snappy: bool,
    pub deflate: bool,
    pub deflate_level: u16,
    pub sample_rate: u16,
    pub user_agent: String,
    pub message_timeout: u32,
}

Fields

client_id: Option<String>hostname: Option<String>feature_negotiation: boolheartbeat_interval: i64output_buffer_size: u64output_buffer_timeout: u32tls_v1: boolsnappy: booldeflate: booldeflate_level: u16sample_rate: u16user_agent: Stringmessage_timeout: u32

Methods

impl Config[src]

pub fn new() -> Config[src]

pub fn client_id(self, client_id: String) -> Self[src]

pub fn hostname(self, hostname: String) -> Self[src]

pub fn user_agent(self, user_agent: String) -> Self[src]

pub fn snappy(self, snappy: bool) -> Self[src]

Trait Implementations

impl Default for Config[src]

impl Clone for Config[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Config> for Config[src]

impl Debug for Config[src]

impl Serialize for Config[src]

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

Auto Trait Implementations

impl Send for Config

impl Sync for Config

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

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