pub struct ReassignmentResult {
pub topic: String,
pub partition: i32,
pub error_code: i16,
pub error_message: Option<String>,
}Expand description
Flattened per-partition result of AlterPartitionReassignments.
Fields§
§topic: StringTopic name.
partition: i32Partition index.
error_code: i16Per-partition error code (0 is success).
error_message: Option<String>Broker error message, when present.
Implementations§
Trait Implementations§
Source§impl Clone for ReassignmentResult
impl Clone for ReassignmentResult
Source§fn clone(&self) -> ReassignmentResult
fn clone(&self) -> ReassignmentResult
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 ReassignmentResult
impl Debug for ReassignmentResult
impl Eq for ReassignmentResult
Source§impl PartialEq for ReassignmentResult
impl PartialEq for ReassignmentResult
impl StructuralPartialEq for ReassignmentResult
Auto Trait Implementations§
impl Freeze for ReassignmentResult
impl RefUnwindSafe for ReassignmentResult
impl Send for ReassignmentResult
impl Sync for ReassignmentResult
impl Unpin for ReassignmentResult
impl UnsafeUnpin for ReassignmentResult
impl UnwindSafe for ReassignmentResult
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