Struct fluvio_controlplane::UpdateReplicaRequest[][src]

pub struct UpdateReplicaRequest {
    pub epoch: i64,
    pub changes: Vec<ReplicaMsg>,
    pub all: Vec<Replica>,
}

Changes to Replica Specs

Fields

epoch: i64changes: Vec<ReplicaMsg>all: Vec<Replica>

Implementations

impl UpdateReplicaRequest[src]

pub fn with_changes(epoch: i64, changes: Vec<ReplicaMsg>) -> Self[src]

pub fn with_all(epoch: i64, all: Vec<Replica>) -> Self[src]

Trait Implementations

impl Debug for UpdateReplicaRequest[src]

impl Decoder for UpdateReplicaRequest[src]

impl Default for UpdateReplicaRequest[src]

impl Encoder for UpdateReplicaRequest[src]

impl Request for UpdateReplicaRequest[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> From<T> for T[src]

impl<T> Instrument 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.