Trait fluvio::dataplane::api::Request

source ·
pub trait Request: Encoder + Decoder + Debug {
    type Response: Encoder + Decoder + Debug;

    const API_KEY: u16;
    const DEFAULT_API_VERSION: i16 = 0i16;
    const MIN_API_VERSION: i16 = _;
    const MAX_API_VERSION: i16 = Self::DEFAULT_API_VERSION;
}

Required Associated Types§

Required Associated Constants§

Provided Associated Constants§

source

const DEFAULT_API_VERSION: i16 = 0i16

source

const MIN_API_VERSION: i16 = _

source

const MAX_API_VERSION: i16 = Self::DEFAULT_API_VERSION

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Request for MirroringRemoteClusterRequest<MirrorConnect>

source§

impl Request for ObjectMirroringRequest

source§

impl Request for ReplicaOffsetUpdateRequest

source§

impl Request for DeleteConsumerOffsetRequest

source§

impl Request for FetchConsumerOffsetsRequest

source§

impl Request for UpdateConsumerOffsetRequest

source§

impl Request for FetchOffsetsRequest

source§

impl Request for UpdateOffsetsRequest

source§

impl<R> Request for FetchRequest<R>
where R: Debug + Decoder + Encoder,

source§

impl<R> Request for ProduceRequest<R>
where R: Debug + Decoder + Encoder,

source§

impl<R> Request for StreamFetchRequest<R>
where R: Debug + Decoder + Encoder,

Implementors§