pub struct PartitionProduceData {
pub index: i32,
pub records: Option<Vec<u8>>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§index: i32
The partition index.
records: Option<Vec<u8>>
The record data to be produced.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for PartitionProduceData
impl Clone for PartitionProduceData
Source§fn clone(&self) -> PartitionProduceData
fn clone(&self) -> PartitionProduceData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PartitionProduceData
impl Debug for PartitionProduceData
Source§impl Decodable for PartitionProduceData
impl Decodable for PartitionProduceData
Source§impl Default for PartitionProduceData
impl Default for PartitionProduceData
Source§fn default() -> PartitionProduceData
fn default() -> PartitionProduceData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PartitionProduceData
impl RefUnwindSafe for PartitionProduceData
impl Send for PartitionProduceData
impl Sync for PartitionProduceData
impl Unpin for PartitionProduceData
impl UnwindSafe for PartitionProduceData
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