pub struct TopicProduceDataBuilder { /* private fields */ }
Expand description
Builder for TopicProduceData
.
Implementations§
source§impl TopicProduceDataBuilder
impl TopicProduceDataBuilder
sourcepub fn partition_data(&mut self, value: Vec<PartitionProduceData>) -> &mut Self
pub fn partition_data(&mut self, value: Vec<PartitionProduceData>) -> &mut Self
Each partition to produce to.
Supported API versions: 0-10
sourcepub fn unknown_tagged_fields(
&mut self,
value: BTreeMap<i32, Bytes>
) -> &mut Self
pub fn unknown_tagged_fields( &mut self, value: BTreeMap<i32, Bytes> ) -> &mut Self
Other tagged fields
sourcepub fn build(&self) -> Result<TopicProduceData, TopicProduceDataBuilderError>
pub fn build(&self) -> Result<TopicProduceData, TopicProduceDataBuilderError>
Trait Implementations§
source§impl Clone for TopicProduceDataBuilder
impl Clone for TopicProduceDataBuilder
source§fn clone(&self) -> TopicProduceDataBuilder
fn clone(&self) -> TopicProduceDataBuilder
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for TopicProduceDataBuilder
impl Send for TopicProduceDataBuilder
impl Sync for TopicProduceDataBuilder
impl Unpin for TopicProduceDataBuilder
impl UnwindSafe for TopicProduceDataBuilder
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