[][src]Struct aiven_rs::service::types_kafka::TopicInfo

pub struct TopicInfo {
    pub cleanup_policy: String,
    pub min_insync_replicas: i32,
    pub partitions: Vec<KafkaPartition>,
    pub replication: i32,
    pub retention_bytes: i32,
    pub retention_hours: i32,
    pub state: String,
    pub topic_name: String,
}

Fields

cleanup_policy: Stringmin_insync_replicas: i32partitions: Vec<KafkaPartition>replication: i32retention_bytes: i32retention_hours: i32state: Stringtopic_name: String

Trait Implementations

impl Debug for TopicInfo[src]

impl Default for TopicInfo[src]

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

impl Serialize for TopicInfo[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: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,