pub struct DeleteTopicsRequest {
pub topic_names: Array<String_>,
pub timeout_ms: Int32,
pub tagged_fields: Option<TaggedFields>,
}
Fields§
§topic_names: Array<String_>
The names of the topics to delete.
timeout_ms: Int32
The length of time in milliseconds to wait for the deletions to complete.
tagged_fields: Option<TaggedFields>
The tagged fields.
Added in version 4.
Trait Implementations§
Source§impl Debug for DeleteTopicsRequest
impl Debug for DeleteTopicsRequest
Source§impl RequestBody for DeleteTopicsRequest
impl RequestBody for DeleteTopicsRequest
Source§const API_VERSION_RANGE: ApiVersionRange
const API_VERSION_RANGE: ApiVersionRange
Enough for now.
Source§const FIRST_TAGGED_FIELD_IN_REQUEST_VERSION: ApiVersion
const FIRST_TAGGED_FIELD_IN_REQUEST_VERSION: ApiVersion
The first version of the messages (not of the header) that uses tagged fields, if any. Read more
Source§type ResponseBody = DeleteTopicsResponse
type ResponseBody = DeleteTopicsResponse
The response type that will follow when issuing this request.
Source§const FIRST_TAGGED_FIELD_IN_RESPONSE_VERSION: ApiVersion = Self::FIRST_TAGGED_FIELD_IN_REQUEST_VERSION
const FIRST_TAGGED_FIELD_IN_RESPONSE_VERSION: ApiVersion = Self::FIRST_TAGGED_FIELD_IN_REQUEST_VERSION
Normally the same as
FIRST_TAGGED_FIELD_IN_REQUEST_VERSION
but
there are some special snowflakes.Source§impl<W> WriteVersionedType<W> for DeleteTopicsRequestwhere
W: Write,
impl<W> WriteVersionedType<W> for DeleteTopicsRequestwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteTopicsRequest
impl RefUnwindSafe for DeleteTopicsRequest
impl Send for DeleteTopicsRequest
impl Sync for DeleteTopicsRequest
impl Unpin for DeleteTopicsRequest
impl UnwindSafe for DeleteTopicsRequest
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