[][src]Struct rdkafka::admin::ConfigEntry

pub struct ConfigEntry {
    pub name: String,
    pub value: Option<String>,
    pub source: ConfigSource,
    pub is_read_only: bool,
    pub is_default: bool,
    pub is_sensitive: bool,
}

An individual configuration parameter for a ConfigResource.

Fields

name: String

The name of the configuration parameter.

value: Option<String>

The value of the configuration parameter.

source: ConfigSource

The source of the configuration parameter.

is_read_only: bool

Whether the configuration parameter is read only.

is_default: bool

Whether the configuration parameter currently has the default value.

is_sensitive: bool

Whether the configuration parameter contains sensitive data.

Trait Implementations

impl Debug for ConfigEntry[src]

impl Eq for ConfigEntry[src]

impl PartialEq<ConfigEntry> for ConfigEntry[src]

impl StructuralEq for ConfigEntry[src]

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