pub struct AlterConfigsResourceResponse {
pub error_code: i16,
pub error_message: Option<KafkaString>,
pub resource_type: i8,
pub resource_name: KafkaString,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§error_code: i16The resource error code.
error_message: Option<KafkaString>The resource error message, or null if there was no error.
resource_type: i8The resource type.
resource_name: KafkaStringThe resource name.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl AlterConfigsResourceResponse
impl AlterConfigsResourceResponse
pub fn with_error_code(self, value: i16) -> Self
pub fn with_error_message(self, value: Option<KafkaString>) -> Self
pub fn with_resource_type(self, value: i8) -> Self
pub fn with_resource_name(self, value: KafkaString) -> Self
pub fn read(buf: &mut Bytes, version: i16) -> Result<Self>
pub fn write(&self, buf: &mut BytesMut, version: i16) -> Result<()>
pub fn encoded_len(&self, version: i16) -> Result<usize>
Trait Implementations§
Source§impl Clone for AlterConfigsResourceResponse
impl Clone for AlterConfigsResourceResponse
Source§fn clone(&self) -> AlterConfigsResourceResponse
fn clone(&self) -> AlterConfigsResourceResponse
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 AlterConfigsResourceResponse
impl Debug for AlterConfigsResourceResponse
Source§impl PartialEq for AlterConfigsResourceResponse
impl PartialEq for AlterConfigsResourceResponse
Source§fn eq(&self, other: &AlterConfigsResourceResponse) -> bool
fn eq(&self, other: &AlterConfigsResourceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AlterConfigsResourceResponse
Auto Trait Implementations§
impl !Freeze for AlterConfigsResourceResponse
impl RefUnwindSafe for AlterConfigsResourceResponse
impl Send for AlterConfigsResourceResponse
impl Sync for AlterConfigsResourceResponse
impl Unpin for AlterConfigsResourceResponse
impl UnsafeUnpin for AlterConfigsResourceResponse
impl UnwindSafe for AlterConfigsResourceResponse
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