pub struct DescribeConfigsResource {
pub resource_type: i8,
pub resource_name: KafkaString,
pub configuration_keys: Option<Vec<KafkaString>>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§resource_type: i8The resource type.
resource_name: KafkaStringThe resource name.
configuration_keys: Option<Vec<KafkaString>>The configuration keys to list, or null to list all configuration keys.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl DescribeConfigsResource
impl DescribeConfigsResource
pub fn with_resource_type(self, value: i8) -> Self
pub fn with_resource_name(self, value: KafkaString) -> Self
pub fn with_configuration_keys(self, value: Option<Vec<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 DescribeConfigsResource
impl Clone for DescribeConfigsResource
Source§fn clone(&self) -> DescribeConfigsResource
fn clone(&self) -> DescribeConfigsResource
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 DescribeConfigsResource
impl Debug for DescribeConfigsResource
Source§impl Default for DescribeConfigsResource
impl Default for DescribeConfigsResource
Source§impl PartialEq for DescribeConfigsResource
impl PartialEq for DescribeConfigsResource
Source§fn eq(&self, other: &DescribeConfigsResource) -> bool
fn eq(&self, other: &DescribeConfigsResource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeConfigsResource
Auto Trait Implementations§
impl !Freeze for DescribeConfigsResource
impl RefUnwindSafe for DescribeConfigsResource
impl Send for DescribeConfigsResource
impl Sync for DescribeConfigsResource
impl Unpin for DescribeConfigsResource
impl UnsafeUnpin for DescribeConfigsResource
impl UnwindSafe for DescribeConfigsResource
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