[][src]Struct rdkafka::producer::base_producer::DefaultProducerContext

pub struct DefaultProducerContext;

Default producer context that can be use when a custom context is not required.

Trait Implementations

impl ClientContext for DefaultProducerContext[src]

fn log(&self, level: RDKafkaLogLevel, fac: &str, log_message: &str)[src]

Receives log lines from librdkafka.

fn stats(&self, statistics: Statistics)[src]

Receives the statistics of the librdkafka client. To enable, the "statistics.interval.ms" configuration parameter must be specified. Read more

fn error(&self, error: KafkaError, reason: &str)[src]

Receives global errors from the librdkafka client.

impl ProducerContext for DefaultProducerContext[src]

type DeliveryOpaque = ()

A DeliveryOpaque is a user-defined structure that will be passed to the producer when producing a message, and returned to the delivery method once the message has been delivered, or failed to. Read more

impl Clone for DefaultProducerContext[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

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.