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§
source§impl Debug for ConfigEntry
impl Debug for ConfigEntry
source§impl PartialEq for ConfigEntry
impl PartialEq for ConfigEntry
impl Eq for ConfigEntry
impl StructuralPartialEq for ConfigEntry
Auto Trait Implementations§
impl Freeze for ConfigEntry
impl RefUnwindSafe for ConfigEntry
impl Send for ConfigEntry
impl Sync for ConfigEntry
impl Unpin for ConfigEntry
impl UnwindSafe for ConfigEntry
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.