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: StringThe name of the configuration parameter.
value: Option<String>The value of the configuration parameter.
source: ConfigSourceThe source of the configuration parameter.
is_read_only: boolWhether the configuration parameter is read only.
is_default: boolWhether the configuration parameter currently has the default value.
is_sensitive: boolWhether 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 !=.