[][src]Struct flv_k8_topic::TopicSpec

pub struct TopicSpec {
    pub partitions: Option<i32>,
    pub replication_factor: Option<i32>,
    pub ignore_rack_assignment: Option<bool>,
    pub custom_replica_assignment: Option<Vec<Partition>>,
}

Fields

partitions: Option<i32>replication_factor: Option<i32>ignore_rack_assignment: Option<bool>custom_replica_assignment: Option<Vec<Partition>>

Methods

impl TopicSpec[src]

pub fn new(
    partitions: Option<i32>,
    replication_factor: Option<i32>,
    ignore_rack_assignment: Option<bool>,
    custom_replica_assignment: Option<Vec<Partition>>
) -> Self
[src]

Trait Implementations

impl Clone for TopicSpec[src]

impl Debug for TopicSpec[src]

impl Default for TopicSpec[src]

impl<'de> Deserialize<'de> for TopicSpec[src]

impl PartialEq<TopicSpec> for TopicSpec[src]

impl Serialize for TopicSpec[src]

impl Spec for TopicSpec[src]

type Status = TopicStatus

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.