[][src]Struct kf_protocol::message::isr::KfLeaderAndIsrRequest

pub struct KfLeaderAndIsrRequest {
    pub controller_id: i32,
    pub controller_epoch: i32,
    pub broker_epoch: i64,
    pub topic_states: Vec<LeaderAndIsrRequestTopicState>,
    pub partition_states_v0: Vec<LeaderAndIsrRequestPartitionStateV0>,
    pub live_leaders: Vec<LeaderAndIsrLiveLeader>,
}

Fields

controller_id: i32

The current controller ID.

controller_epoch: i32

The current controller epoch.

broker_epoch: i64

The current broker epoch.

topic_states: Vec<LeaderAndIsrRequestTopicState>

Each topic.

partition_states_v0: Vec<LeaderAndIsrRequestPartitionStateV0>

The state of each partition

live_leaders: Vec<LeaderAndIsrLiveLeader>

The current live leaders.

Trait Implementations

impl Debug for KfLeaderAndIsrRequest[src]

impl Decoder for KfLeaderAndIsrRequest[src]

impl Default for KfLeaderAndIsrRequest[src]

impl<'de> Deserialize<'de> for KfLeaderAndIsrRequest[src]

impl Encoder for KfLeaderAndIsrRequest[src]

impl Request for KfLeaderAndIsrRequest[src]

impl Serialize for KfLeaderAndIsrRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.