pub struct DeleteRecordsRequest {
pub topics: Vec<DeleteRequestTopic>,
pub timeout_ms: Int32,
pub tagged_fields: Option<TaggedFields>,
}Fields§
§topics: Vec<DeleteRequestTopic>Each topic that we want to delete records from.
timeout_ms: Int32How long to wait for the deletion to complete, in milliseconds.
tagged_fields: Option<TaggedFields>The tagged fields.
Added in version 2
Trait Implementations§
Source§impl Debug for DeleteRecordsRequest
impl Debug for DeleteRecordsRequest
Source§impl RequestBody for DeleteRecordsRequest
impl RequestBody for DeleteRecordsRequest
Source§const API_VERSION_RANGE: ApiVersionRange
const API_VERSION_RANGE: ApiVersionRange
All versions.
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 = DeleteRecordsResponse
type ResponseBody = DeleteRecordsResponse
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 DeleteRecordsRequestwhere
W: Write,
impl<W> WriteVersionedType<W> for DeleteRecordsRequestwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteRecordsRequest
impl RefUnwindSafe for DeleteRecordsRequest
impl Send for DeleteRecordsRequest
impl Sync for DeleteRecordsRequest
impl Unpin for DeleteRecordsRequest
impl UnwindSafe for DeleteRecordsRequest
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