[−][src]Struct flv_metadata::topic::TopicStatus
Fields
resolution: TopicResolutionreplica_map: BTreeMap<i32, Vec<i32>>reason: StringMethods
impl TopicStatus[src]
pub fn new<S>(
resolution: TopicResolution,
replica_map: Vec<Vec<i32>>,
reason: S
) -> Self where
S: Into<String>, [src]
resolution: TopicResolution,
replica_map: Vec<Vec<i32>>,
reason: S
) -> Self where
S: Into<String>,
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]
S: Into<String>,
pub fn set_resolution_no_resource<S>(reason: S) -> (TopicResolution, String) where
S: Into<String>, [src]
S: Into<String>,
pub fn set_next_resolution(&mut self, next: (TopicResolution, String))[src]
Trait Implementations
impl Clone for TopicStatus[src]
fn clone(&self) -> TopicStatus[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for TopicStatus[src]
impl Decoder for TopicStatus[src]
fn decode<T>(&mut self, src: &mut T, version: Version) -> Result<(), Error> where
T: Buf, [src]
T: Buf,
fn decode_from<T>(src: &mut T, version: i16) -> Result<Self, Error> where
Self: Default,
T: Buf,
Self: Default,
T: Buf,
impl Default for TopicStatus[src]
impl Display for TopicStatus[src]
impl Encoder for TopicStatus[src]
fn encode<T>(&self, src: &mut T, version: Version) -> Result<(), Error> where
T: BufMut, [src]
T: BufMut,
fn write_size(&self, version: Version) -> usize[src]
fn as_bytes(&self, version: i16) -> Result<Bytes, Error>
impl From<TopicStatus> for TopicStatus[src]
impl From<TopicStatus> for K8TopicStatus[src]
fn from(status: TopicStatus) -> K8TopicStatus[src]
impl PartialEq<TopicStatus> for TopicStatus[src]
fn eq(&self, other: &TopicStatus) -> bool[src]
fn ne(&self, other: &TopicStatus) -> bool[src]
impl StructuralPartialEq for TopicStatus[src]
Auto Trait Implementations
impl RefUnwindSafe for TopicStatus
impl Send for TopicStatus
impl Sync for TopicStatus
impl Unpin for TopicStatus
impl UnwindSafe for TopicStatus
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,