Struct fluvio_controlplane::UpdateSpuRequest[][src]

pub struct UpdateSpuRequest {
    pub epoch: i64,
    pub changes: Vec<SpuMsg>,
    pub all: Vec<SpuSpec>,
}

Changes to Spu specs

Fields

epoch: i64changes: Vec<SpuMsg>all: Vec<SpuSpec>

Implementations

impl UpdateSpuRequest[src]

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

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

pub fn changes(&self) -> &Vec<SpuMsg>[src]

pub fn changes_owned(self) -> Vec<SpuMsg>[src]

Trait Implementations

impl Debug for UpdateSpuRequest[src]

impl Decoder for UpdateSpuRequest[src]

impl Default for UpdateSpuRequest[src]

impl Encoder for UpdateSpuRequest[src]

impl Request for UpdateSpuRequest[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.