pub struct DeleteResponsePartition {
pub partition_index: Int32,
pub low_watermark: Int64,
pub error: Option<Error>,
pub tagged_fields: Option<TaggedFields>,
}Fields§
§partition_index: Int32The partition index.
low_watermark: Int64The partition low water mark.
error: Option<Error>The error code, or 0 if there was no error.
tagged_fields: Option<TaggedFields>The tagged fields.
Added in version 2
Trait Implementations§
Source§impl Debug for DeleteResponsePartition
impl Debug for DeleteResponsePartition
Source§impl<R> ReadVersionedType<R> for DeleteResponsePartitionwhere
R: Read,
impl<R> ReadVersionedType<R> for DeleteResponsePartitionwhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteResponsePartition
impl RefUnwindSafe for DeleteResponsePartition
impl Send for DeleteResponsePartition
impl Sync for DeleteResponsePartition
impl Unpin for DeleteResponsePartition
impl UnwindSafe for DeleteResponsePartition
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