Struct fluvio_dataplane_protocol::api::RequestMessage[]

pub struct RequestMessage<R> {
    pub header: RequestHeader,
    pub request: R,
}

Start of API request

Fields

header: RequestHeaderrequest: R

Implementations

impl<R> RequestMessage<R>

pub fn get_mut_header(&mut self) -> &mut RequestHeader

impl<R> RequestMessage<R> where
    R: Request

pub fn new(header: RequestHeader, request: R) -> RequestMessage<R>

create with header, this assume header is constructed from higher request no api key check is performed since it is already done

pub fn new_request(request: R) -> RequestMessage<R>

create from request, header is implicilty created from key in the request

pub fn get_header_request(self) -> (RequestHeader, R)

pub fn request(&self) -> &R

pub fn new_response(
    &self,
    response: <R as Request>::Response
) -> ResponseMessage<<R as Request>::Response>

pub fn response_with_header<H>(
    header: H,
    response: <R as Request>::Response
) -> ResponseMessage<<R as Request>::Response> where
    H: Into<i32>, 

pub fn decode_response<T>(
    &self,
    src: &mut T,
    version: i16
) -> Result<ResponseMessage<<R as Request>::Response>, Error> where
    T: Buf

pub fn decode_response_from_file<H>(
    &self,
    file_name: H,
    version: i16
) -> Result<ResponseMessage<<R as Request>::Response>, Error> where
    H: AsRef<Path>, 

pub fn set_client_id<T>(self, client_id: T) -> RequestMessage<R> where
    T: Into<String>, 

helper function to set client id

Trait Implementations

impl<R> Debug for RequestMessage<R> where
    R: Debug

impl<R> Decoder for RequestMessage<R> where
    R: Request

impl<R> Default for RequestMessage<R> where
    R: Request + Default

impl<R> Display for RequestMessage<R> where
    R: Display

impl<R> Encoder for RequestMessage<R> where
    R: Request

impl<R> FileWrite for RequestMessage<R> where
    R: FileWrite + Default + Request
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for RequestMessage<R> where
    R: RefUnwindSafe

impl<R> Send for RequestMessage<R> where
    R: Send

impl<R> Sync for RequestMessage<R> where
    R: Sync

impl<R> Unpin for RequestMessage<R> where
    R: Unpin

impl<R> UnwindSafe for RequestMessage<R> where
    R: UnwindSafe

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