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: String
The configuration name.
value: Option<String>
The configuration value.
read_only: bool
True if the configuration is read-only.
config_source: i8
The configuration source.
is_sensitive: bool
True if this configuration is sensitive.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§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