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: UnknownTaggedFields,
}Fields§
§name: String§value: Option<String>§read_only: bool§config_source: i8§is_sensitive: bool§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for CreatableTopicConfigs
impl Clone for CreatableTopicConfigs
Source§fn clone(&self) -> CreatableTopicConfigs
fn clone(&self) -> CreatableTopicConfigs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Decode<'_> for CreatableTopicConfigs
impl Decode<'_> for CreatableTopicConfigs
Source§impl Default for CreatableTopicConfigs
impl Default for CreatableTopicConfigs
Source§impl Encode for CreatableTopicConfigs
impl Encode for CreatableTopicConfigs
impl Eq for CreatableTopicConfigs
Source§impl PartialEq for CreatableTopicConfigs
impl PartialEq for CreatableTopicConfigs
Source§fn eq(&self, other: &CreatableTopicConfigs) -> bool
fn eq(&self, other: &CreatableTopicConfigs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreatableTopicConfigs
Auto Trait Implementations§
impl Freeze for CreatableTopicConfigs
impl RefUnwindSafe for CreatableTopicConfigs
impl Send for CreatableTopicConfigs
impl Sync for CreatableTopicConfigs
impl Unpin for CreatableTopicConfigs
impl UnsafeUnpin 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