pub struct CreatableTopicConfig {
pub name: String,
pub value: Option<String>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§name: String
The configuration name.
value: Option<String>
The configuration value.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Clone for CreatableTopicConfig
impl Clone for CreatableTopicConfig
source§fn clone(&self) -> CreatableTopicConfig
fn clone(&self) -> CreatableTopicConfig
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 CreatableTopicConfig
impl Debug for CreatableTopicConfig
source§impl Decodable for CreatableTopicConfig
impl Decodable for CreatableTopicConfig
source§impl Default for CreatableTopicConfig
impl Default for CreatableTopicConfig
source§fn default() -> CreatableTopicConfig
fn default() -> CreatableTopicConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CreatableTopicConfig
impl Send for CreatableTopicConfig
impl Sync for CreatableTopicConfig
impl Unpin for CreatableTopicConfig
impl UnwindSafe for CreatableTopicConfig
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