pub struct DeleteResponseTopic {
pub name: String_,
pub partitions: Vec<DeleteResponsePartition>,
pub tagged_fields: Option<TaggedFields>,
}
Fields§
§name: String_
The topic name.
partitions: Vec<DeleteResponsePartition>
Each partition that we wanted to delete records from.
tagged_fields: Option<TaggedFields>
The tagged fields.
Added in version 2
Trait Implementations§
Source§impl Debug for DeleteResponseTopic
impl Debug for DeleteResponseTopic
Source§impl<R> ReadVersionedType<R> for DeleteResponseTopicwhere
R: Read,
impl<R> ReadVersionedType<R> for DeleteResponseTopicwhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteResponseTopic
impl RefUnwindSafe for DeleteResponseTopic
impl Send for DeleteResponseTopic
impl Sync for DeleteResponseTopic
impl Unpin for DeleteResponseTopic
impl UnwindSafe for DeleteResponseTopic
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