[]Enum fluvio::metadata::topic::TopicSpec

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

Variants

Assigned(PartitionMaps)

Implementations

impl TopicSpec

pub fn new_assigned<J>(partition_map: J) -> TopicSpec where
    J: Into<PartitionMaps>, 

pub fn new_computed(
    partitions: i32,
    replication: i32,
    ignore_rack: Option<bool>
) -> TopicSpec

pub fn is_computed(&self) -> bool

pub fn partitions(&self) -> Option<i32>

pub fn replication_factor(&self) -> Option<i32>

pub fn ignore_rack_assignment(&self) -> bool

pub fn type_label(&self) -> &'static str

pub fn partitions_display(&self) -> String

pub fn replication_factor_display(&self) -> String

pub fn ignore_rack_assign_display(&self) -> &'static str

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

pub fn valid_partition(partitions: &i32) -> Result<(), Error>

Validate partitions

pub fn valid_replication_factor(replication: &i32) -> Result<(), Error>

Validate replication factor

Trait Implementations

impl Clone for TopicSpec

impl Creatable for TopicSpec

impl Debug for TopicSpec

impl Decoder for TopicSpec

impl Default for TopicSpec

impl DeleteSpec for TopicSpec[src]

impl Display for TopicSpec

impl Encoder for TopicSpec

impl From<(i32, i32, bool)> for TopicSpec

impl From<(i32, i32)> for TopicSpec

convert from tuple with partition and replication with rack off

impl From<TopicSpec> for AllCreatableSpec[src]

impl ListSpec for TopicSpec[src]

type Filter = String

filter type

impl PartialEq<TopicSpec> for TopicSpec

impl Removable for TopicSpec

impl Spec for TopicSpec

type IndexKey = String

type Status = TopicStatus

type Owner = TopicSpec

impl SpecExt for TopicSpec

impl StructuralPartialEq for TopicSpec

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]