Struct rdkafka::admin::ConfigEntry
source · [−]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,
}
Expand description
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.