pub struct DeleteRequestTopic {
pub name: String_,
pub partitions: Vec<DeleteRequestPartition>,
pub tagged_fields: Option<TaggedFields>,
}Fields§
§name: String_The topic name.
partitions: Vec<DeleteRequestPartition>Each partition that we want to delete records from.
tagged_fields: Option<TaggedFields>The tagged fields.
Added in version 2
Trait Implementations§
Source§impl Debug for DeleteRequestTopic
impl Debug for DeleteRequestTopic
Source§impl<W> WriteVersionedType<W> for DeleteRequestTopicwhere
W: Write,
impl<W> WriteVersionedType<W> for DeleteRequestTopicwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteRequestTopic
impl RefUnwindSafe for DeleteRequestTopic
impl Send for DeleteRequestTopic
impl Sync for DeleteRequestTopic
impl Unpin for DeleteRequestTopic
impl UnwindSafe for DeleteRequestTopic
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