pub struct OffsetDeleteResponse {
pub error_code: i16,
pub throttle_time_ms: i32,
pub topics: Vec<OffsetDeleteResponseTopic>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§error_code: i16§throttle_time_ms: i32§topics: Vec<OffsetDeleteResponseTopic>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for OffsetDeleteResponse
impl Clone for OffsetDeleteResponse
Source§fn clone(&self) -> OffsetDeleteResponse
fn clone(&self) -> OffsetDeleteResponse
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 OffsetDeleteResponse
impl Debug for OffsetDeleteResponse
Source§impl Decode<'_> for OffsetDeleteResponse
impl Decode<'_> for OffsetDeleteResponse
Source§impl Default for OffsetDeleteResponse
impl Default for OffsetDeleteResponse
Source§fn default() -> OffsetDeleteResponse
fn default() -> OffsetDeleteResponse
Returns the “default value” for a type. Read more
Source§impl Encode for OffsetDeleteResponse
impl Encode for OffsetDeleteResponse
impl Eq for OffsetDeleteResponse
Source§impl PartialEq for OffsetDeleteResponse
impl PartialEq for OffsetDeleteResponse
Source§fn eq(&self, other: &OffsetDeleteResponse) -> bool
fn eq(&self, other: &OffsetDeleteResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OffsetDeleteResponse
Auto Trait Implementations§
impl Freeze for OffsetDeleteResponse
impl RefUnwindSafe for OffsetDeleteResponse
impl Send for OffsetDeleteResponse
impl Sync for OffsetDeleteResponse
impl Unpin for OffsetDeleteResponse
impl UnsafeUnpin for OffsetDeleteResponse
impl UnwindSafe for OffsetDeleteResponse
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