[][src]Struct nakadion::consumer::LogConfig

#[non_exhaustive]pub struct LogConfig {
    pub show_subscription_id: bool,
    pub show_stream_id: bool,
    pub show_event_type: bool,
    pub show_partition_id: bool,
    pub debug_enabled: bool,
}

Configures which contextual data should be made available with a log message

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
show_subscription_id: boolshow_stream_id: boolshow_event_type: boolshow_partition_id: booldebug_enabled: bool

Implementations

impl LogConfig[src]

pub fn from_env() -> Result<Self, Error>[src]

Initializes all fields from environment variables prefixed with "NAKADION_"

pub fn from_env_prefixed<T: AsRef<str>>(prefix: T) -> Result<Self, Error>[src]

Initializes all fields from environment variables prefixed with "[prefix]_" The underscore is omitted if prefix is empty

pub fn from_env_type_names() -> Result<Self, Error>[src]

Initializes all fields from environment variables without any prefix

pub fn low() -> Self[src]

Only display the stream id and the partition id

pub fn medium() -> Self[src]

Only display the stream id, the event type and the partition id

pub fn high() -> Self[src]

Only display the subscription id, the stream id, the event type and the partition id

Trait Implementations

impl Clone for LogConfig[src]

impl Debug for LogConfig[src]

impl Default for LogConfig[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> From<T> for T[src]

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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>,