pub struct CreatableTopicConfigs {
pub name: String,
pub value: Option<String>,
pub read_only: bool,
pub config_source: i8,
pub is_sensitive: bool,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§name: StringThe configuration name.
value: Option<String>The configuration value.
read_only: boolTrue if the configuration is read-only.
config_source: i8The configuration source.
is_sensitive: boolTrue if this configuration is sensitive.
unknown_tagged_fields: Vec<RawTaggedField>Unknown tagged fields.
Trait Implementations§
source§impl Clone for CreatableTopicConfigs
impl Clone for CreatableTopicConfigs
source§fn clone(&self) -> CreatableTopicConfigs
fn clone(&self) -> CreatableTopicConfigs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreatableTopicConfigs
impl Debug for CreatableTopicConfigs
source§impl Default for CreatableTopicConfigs
impl Default for CreatableTopicConfigs
source§fn default() -> CreatableTopicConfigs
fn default() -> CreatableTopicConfigs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CreatableTopicConfigs
impl Send for CreatableTopicConfigs
impl Sync for CreatableTopicConfigs
impl Unpin for CreatableTopicConfigs
impl UnwindSafe for CreatableTopicConfigs
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