Struct fluvio::dataplane::api::ResponseMessage

source ·
pub struct ResponseMessage<P> {
    pub correlation_id: i32,
    pub response: P,
}

Fields§

§correlation_id: i32§response: P

Implementations§

source§

impl<P> ResponseMessage<P>

source

pub fn from_header(header: &RequestHeader, response: P) -> ResponseMessage<P>

source

pub fn new(correlation_id: i32, response: P) -> ResponseMessage<P>

source§

impl<P> ResponseMessage<P>
where P: Decoder,

source

pub fn decode_from<T>( src: &mut T, version: i16 ) -> Result<ResponseMessage<P>, Error>
where T: Buf,

source

pub fn decode_from_file<H>( file_name: H, version: i16 ) -> Result<ResponseMessage<P>, Error>
where H: AsRef<Path>,

Trait Implementations§

source§

impl<P> Debug for ResponseMessage<P>
where P: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<P> Default for ResponseMessage<P>
where P: Default,

source§

fn default() -> ResponseMessage<P>

Returns the “default value” for a type. Read more
source§

impl<P> Encoder for ResponseMessage<P>
where P: Encoder + Default,

source§

fn write_size(&self, version: i16) -> usize

size of this object in bytes
source§

fn encode<T>(&self, out: &mut T, version: i16) -> Result<(), Error>
where T: BufMut,

encoding contents for buffer
source§

fn as_bytes(&self, version: i16) -> Result<Bytes, Error>

source§

impl<P> FileWrite for ResponseMessage<P>
where P: FileWrite + Default,

This is same as encoding in the ResponseMessage but first includes the length and can encode async file slice

source§

fn file_encode( &self, dest: &mut BytesMut, data: &mut Vec<StoreValue>, version: i16 ) -> Result<(), Error>

Auto Trait Implementations§

§

impl<P> Freeze for ResponseMessage<P>
where P: Freeze,

§

impl<P> RefUnwindSafe for ResponseMessage<P>
where P: RefUnwindSafe,

§

impl<P> Send for ResponseMessage<P>
where P: Send,

§

impl<P> Sync for ResponseMessage<P>
where P: Sync,

§

impl<P> Unpin for ResponseMessage<P>
where P: Unpin,

§

impl<P> UnwindSafe for ResponseMessage<P>
where P: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> AsyncConnector for T
where T: Send + Sync,