Enum fluvio_sc_schema::topic::TopicSpec[][src]

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

Variants

Assigned(PartitionMaps)

Implementations

impl TopicSpec[src]

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

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

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

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

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

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

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

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

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

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

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

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

Validate partitions

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

Validate replication factor

Trait Implementations

impl Clone for TopicSpec[src]

impl Creatable for TopicSpec[src]

impl Debug for TopicSpec[src]

impl Decoder for TopicSpec[src]

impl Default for TopicSpec[src]

impl DeleteSpec for TopicSpec[src]

impl Display 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 AllCreatableSpec[src]

impl ListSpec for TopicSpec[src]

type Filter = NameFilter

filter type

impl PartialEq<TopicSpec> for TopicSpec[src]

impl Removable for TopicSpec[src]

impl Spec for TopicSpec[src]

type IndexKey = String

type Status = TopicStatus

type Owner = TopicSpec

impl SpecExt 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> 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.