pub struct CreateTopicResponseConfig {
pub name: CompactString,
pub value: CompactNullableString,
pub read_only: Boolean,
pub config_source: Int8,
pub is_sensitive: Boolean,
pub tagged_fields: TaggedFields,
}Fields§
§name: CompactStringThe configuration name.
value: CompactNullableStringThe configuration value.
read_only: BooleanTrue if the configuration is read-only.
config_source: Int8The configuration source.
is_sensitive: BooleanTrue if this configuration is sensitive.
tagged_fields: TaggedFieldsThe tagged fields.
Trait Implementations§
Source§impl Debug for CreateTopicResponseConfig
impl Debug for CreateTopicResponseConfig
Source§impl<R> ReadVersionedType<R> for CreateTopicResponseConfigwhere
R: Read,
impl<R> ReadVersionedType<R> for CreateTopicResponseConfigwhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for CreateTopicResponseConfig
impl RefUnwindSafe for CreateTopicResponseConfig
impl Send for CreateTopicResponseConfig
impl Sync for CreateTopicResponseConfig
impl Unpin for CreateTopicResponseConfig
impl UnwindSafe for CreateTopicResponseConfig
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