pub struct DeletableGroupResult {
pub group_id: KafkaString,
pub error_code: i16,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§group_id: KafkaStringThe group id.
error_code: i16The deletion error, or 0 if the deletion succeeded.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl DeletableGroupResult
impl DeletableGroupResult
pub fn with_group_id(self, value: KafkaString) -> Self
pub fn with_error_code(self, value: i16) -> 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 DeletableGroupResult
impl Clone for DeletableGroupResult
Source§fn clone(&self) -> DeletableGroupResult
fn clone(&self) -> DeletableGroupResult
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 DeletableGroupResult
impl Debug for DeletableGroupResult
Source§impl Default for DeletableGroupResult
impl Default for DeletableGroupResult
Source§impl PartialEq for DeletableGroupResult
impl PartialEq for DeletableGroupResult
Source§fn eq(&self, other: &DeletableGroupResult) -> bool
fn eq(&self, other: &DeletableGroupResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeletableGroupResult
Auto Trait Implementations§
impl !Freeze for DeletableGroupResult
impl RefUnwindSafe for DeletableGroupResult
impl Send for DeletableGroupResult
impl Sync for DeletableGroupResult
impl Unpin for DeletableGroupResult
impl UnsafeUnpin for DeletableGroupResult
impl UnwindSafe for DeletableGroupResult
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