[][src]Enum flv_metadata::topic::TopicSpec

pub enum TopicSpec {
    Assigned(PartitionMaps),
    Computed(TopicReplicaParam),
}

Variants

Assigned(PartitionMaps)

Methods

impl TopicSpec[src]

pub fn new_assigned<J>(partition_map: J) -> Self where
    J: Into<PartitionMaps>, 
[src]

pub fn new_computed(
    partitions: PartitionCount,
    replication: ReplicationFactor,
    ignore_rack: Option<IgnoreRackAssignment>
) -> Self
[src]

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

pub fn partitions(&self) -> Option<PartitionCount>[src]

pub fn replication_factor(&self) -> Option<ReplicationFactor>[src]

pub fn ignore_rack_assignment(&self) -> IgnoreRackAssignment[src]

pub fn type_label(is_computed: &bool) -> &'static str[src]

pub fn partitions_str(partition_cnt: &Option<PartitionCount>) -> String[src]

pub fn replication_factor_str(
    replication_cnt: &Option<ReplicationFactor>
) -> String
[src]

pub fn ignore_rack_assign_str(ignore_rack_assign: &bool) -> &'static str[src]

pub fn partition_map_str(&self) -> Option<String>[src]

pub fn valid_partition(partitions: &PartitionCount) -> Result<(), Error>[src]

Validate partitions

pub fn valid_replication_factor(
    replication: &ReplicationFactor
) -> Result<(), Error>
[src]

Validate replication factor

Trait Implementations

impl Clone for TopicSpec[src]

impl Debug for TopicSpec[src]

impl Decoder for TopicSpec[src]

impl Default for TopicSpec[src]

impl Encoder for TopicSpec[src]

impl From<(i32, i32, bool)> for TopicSpec[src]

impl From<(i32, i32)> for TopicSpec[src]

convert from tuple with partition and replication with rack off

impl From<TopicSpec> for K8TopicSpec[src]

impl PartialEq<TopicSpec> for TopicSpec[src]

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