#[non_exhaustive]pub struct PartitionData {
    pub partition_index: i32,
    pub leader_id: BrokerId,
    pub leader_epoch: i32,
    pub preferred_successors: Vec<i32>,
}Expand description
Valid versions: 0
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.partition_index: i32The partition index.
Supported API versions: 0
leader_id: BrokerIdThe current leader ID that is resigning
Supported API versions: 0
leader_epoch: i32The current epoch
Supported API versions: 0
preferred_successors: Vec<i32>A sorted list of preferred successors to start the election
Supported API versions: 0
Implementations§
source§impl PartitionData
 
impl PartitionData
sourcepub fn with_partition_index(self, value: i32) -> Self
 
pub fn with_partition_index(self, value: i32) -> Self
Sets partition_index to the passed value.
The partition index.
Supported API versions: 0
sourcepub fn with_leader_id(self, value: BrokerId) -> Self
 
pub fn with_leader_id(self, value: BrokerId) -> Self
Sets leader_id to the passed value.
The current leader ID that is resigning
Supported API versions: 0
sourcepub fn with_leader_epoch(self, value: i32) -> Self
 
pub fn with_leader_epoch(self, value: i32) -> Self
Sets leader_epoch to the passed value.
The current epoch
Supported API versions: 0
sourcepub fn with_preferred_successors(self, value: Vec<i32>) -> Self
 
pub fn with_preferred_successors(self, value: Vec<i32>) -> Self
Sets preferred_successors to the passed value.
A sorted list of preferred successors to start the election
Supported API versions: 0
Trait Implementations§
source§impl Clone for PartitionData
 
impl Clone for PartitionData
source§fn clone(&self) -> PartitionData
 
fn clone(&self) -> PartitionData
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 moresource§impl Debug for PartitionData
 
impl Debug for PartitionData
source§impl Decodable for PartitionData
 
impl Decodable for PartitionData
source§impl Default for PartitionData
 
impl Default for PartitionData
source§impl Encodable for PartitionData
 
impl Encodable for PartitionData
source§impl Message for PartitionData
 
impl Message for PartitionData
source§const VERSIONS: VersionRange = _
 
const VERSIONS: VersionRange = _
The valid versions for this message.
source§const DEPRECATED_VERSIONS: Option<VersionRange> = None
 
const DEPRECATED_VERSIONS: Option<VersionRange> = None
The deprecated versions for this message.
source§impl PartialEq for PartitionData
 
impl PartialEq for PartitionData
impl StructuralPartialEq for PartitionData
Auto Trait Implementations§
impl Freeze for PartitionData
impl RefUnwindSafe for PartitionData
impl Send for PartitionData
impl Sync for PartitionData
impl Unpin for PartitionData
impl UnwindSafe for PartitionData
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)