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 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 Freeze for CreatableTopicConfigs
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