[][src]Struct flv_metadata::topic::TopicStatus

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

Fields

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

Methods

impl TopicStatus[src]

pub fn new<S>(
    resolution: TopicResolution,
    replica_map: Vec<Vec<i32>>,
    reason: S
) -> Self where
    S: Into<String>, 
[src]

pub fn resolution(&self) -> &TopicResolution[src]

pub fn replica_map_cnt(&self) -> i32[src]

pub fn set_replica_map(&mut self, replica_map: ReplicaMap)[src]

pub fn spus_in_replica(&self) -> Vec<SpuId>[src]

pub fn replica_map_str(&self) -> String[src]

pub fn replica_map_cnt_str(&self) -> String[src]

pub fn reason_str(&self) -> &String[src]

pub fn is_resolution_initializing(&self) -> bool[src]

pub fn need_replica_map_recal(&self) -> bool[src]

need to update the replic map

pub fn is_resolution_pending(&self) -> bool[src]

pub fn is_resolution_transient(&self) -> bool[src]

pub fn is_resolution_provisioned(&self) -> bool[src]

pub fn next_resolution_provisoned() -> (TopicResolution, String)[src]

pub fn next_resolution_pending() -> (TopicResolution, String)[src]

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>, 
[src]

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

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

Trait Implementations

impl Clone for TopicStatus[src]

impl Debug for TopicStatus[src]

impl Decoder for TopicStatus[src]

impl Default for TopicStatus[src]

impl Display for TopicStatus[src]

impl Encoder for TopicStatus[src]

impl From<TopicStatus> for TopicStatus[src]

impl From<TopicStatus> for K8TopicStatus[src]

impl PartialEq<TopicStatus> for TopicStatus[src]

impl StructuralPartialEq for TopicStatus[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, 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.