pub struct CreateTopicAssignment {
pub partition_index: Int32,
pub broker_ids: Array<Int32>,
pub tagged_fields: Option<TaggedFields>,
}Fields§
§partition_index: Int32The partition index
broker_ids: Array<Int32>The brokers to place the partition on
tagged_fields: Option<TaggedFields>The tagged fields.
Added in version 5
Trait Implementations§
Source§impl Debug for CreateTopicAssignment
impl Debug for CreateTopicAssignment
Source§impl<W> WriteVersionedType<W> for CreateTopicAssignmentwhere
W: Write,
impl<W> WriteVersionedType<W> for CreateTopicAssignmentwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for CreateTopicAssignment
impl RefUnwindSafe for CreateTopicAssignment
impl Send for CreateTopicAssignment
impl Sync for CreateTopicAssignment
impl Unpin for CreateTopicAssignment
impl UnsafeUnpin for CreateTopicAssignment
impl UnwindSafe for CreateTopicAssignment
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