pub struct TopicProduceData {
pub name: String,
pub topic_id: Uuid,
pub partition_data: Vec<PartitionProduceData>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§name: String§topic_id: Uuid§partition_data: Vec<PartitionProduceData>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for TopicProduceData
impl Clone for TopicProduceData
Source§fn clone(&self) -> TopicProduceData
fn clone(&self) -> TopicProduceData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TopicProduceData
impl Debug for TopicProduceData
Source§impl Decode<'_> for TopicProduceData
impl Decode<'_> for TopicProduceData
Source§impl Default for TopicProduceData
impl Default for TopicProduceData
Source§fn default() -> TopicProduceData
fn default() -> TopicProduceData
Returns the “default value” for a type. Read more
Source§impl Encode for TopicProduceData
impl Encode for TopicProduceData
impl Eq for TopicProduceData
Source§impl From<TopicProduceData> for TopicProduceData
impl From<TopicProduceData> for TopicProduceData
Source§fn from(l: TopicProduceData) -> Self
fn from(l: TopicProduceData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TopicProduceData
impl PartialEq for TopicProduceData
Source§fn eq(&self, other: &TopicProduceData) -> bool
fn eq(&self, other: &TopicProduceData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TopicProduceData
Auto Trait Implementations§
impl Freeze for TopicProduceData
impl RefUnwindSafe for TopicProduceData
impl Send for TopicProduceData
impl Sync for TopicProduceData
impl Unpin for TopicProduceData
impl UnsafeUnpin for TopicProduceData
impl UnwindSafe for TopicProduceData
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