Struct fluvio::metadata::topic::TopicStatus[]

pub struct TopicStatus {
    pub resolution: TopicResolution,
    pub replica_map: BTreeMap<i32, Vec<i32, Global>>,
    pub reason: String,
}

Fields

resolution: TopicResolutionreplica_map: BTreeMap<i32, Vec<i32, Global>>reason: String

Implementations

impl TopicStatus

pub fn new<S>(
    resolution: TopicResolution,
    replica_map: Vec<Vec<i32, Global>, Global>,
    reason: S
) -> TopicStatus where
    S: Into<String>, 

pub fn resolution(&self) -> &TopicResolution

pub fn replica_map_cnt(&self) -> i32

pub fn set_replica_map(&mut self, replica_map: BTreeMap<i32, Vec<i32, Global>>)

pub fn spus_in_replica(&self) -> Vec<i32, Global>

pub fn replica_map_str(&self) -> String

pub fn replica_map_cnt_str(&self) -> String

pub fn reason_str(&self) -> &String

pub fn is_resolution_initializing(&self) -> bool

pub fn need_replica_map_recal(&self) -> bool

need to update the replic map

pub fn is_resolution_pending(&self) -> bool

pub fn is_resolution_transient(&self) -> bool

pub fn is_resolution_provisioned(&self) -> bool

pub fn next_resolution_provisioned() -> (TopicResolution, String)

pub fn next_resolution_pending() -> (TopicResolution, String)

set to pending mode which means it is waiting for spu resources to be allocated

pub fn next_resolution_invalid_config<S>(reason: S) -> (TopicResolution, String) where
    S: Into<String>, 

pub fn set_resolution_no_resource<S>(reason: S) -> (TopicResolution, String) where
    S: Into<String>, 

pub fn set_next_resolution(&mut self, next: (TopicResolution, String))

Trait Implementations

impl Clone for TopicStatus

impl Debug for TopicStatus

impl Decoder for TopicStatus

impl Default for TopicStatus

impl Display for TopicStatus

impl Encoder for TopicStatus

impl PartialEq<TopicStatus> for TopicStatus

impl Status for TopicStatus

impl StructuralPartialEq for TopicStatus

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> Erased for T

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<T> WithSubscriber for T[src]