[][src]Struct kf_protocol::message::topic::KfCreateTopicsRequest

pub struct KfCreateTopicsRequest {
    pub topics: Vec<CreatableTopic>,
    pub timeout_ms: i32,
    pub validate_only: bool,
}

Fields

topics: Vec<CreatableTopic>

The topics to create.

timeout_ms: i32

How long to wait in milliseconds before timing out the request.

validate_only: bool

If true, check that the topics can be created as specified, but don't create anything.

Trait Implementations

impl Debug for KfCreateTopicsRequest[src]

impl Decoder for KfCreateTopicsRequest[src]

impl Default for KfCreateTopicsRequest[src]

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

impl Encoder for KfCreateTopicsRequest[src]

impl Request for KfCreateTopicsRequest[src]

impl Serialize for KfCreateTopicsRequest[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.