Struct fizyr_rpc::Message

source ·
pub struct Message<Body> {
    pub header: MessageHeader,
    pub body: Body,
}
Expand description

A complete RPC message, including header and body.

Fields§

§header: MessageHeader

The header of the message.

§body: Body

The body of the message.

Implementations§

source§

impl<Body> Message<Body>

source

pub fn new(header: MessageHeader, body: Body) -> Self

Create a new message with a header and a body.

source

pub fn request(request_id: u32, service_id: i32, body: Body) -> Self

Create a new request message.

source

pub fn response(request_id: u32, service_id: i32, body: Body) -> Self

Create a new response message.

source

pub fn error_response(request_id: u32, message: &str) -> Self
where Body: Body,

Create a new error response message.

source

pub fn requester_update(request_id: u32, service_id: i32, body: Body) -> Self

Create a new requester update message.

source

pub fn responder_update(request_id: u32, service_id: i32, body: Body) -> Self

Create a new responder update message.

source

pub fn stream(request_id: u32, service_id: i32, body: Body) -> Self

Create a new stream message.

Trait Implementations§

source§

impl<Body> Debug for Message<Body>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Body> RefUnwindSafe for Message<Body>
where Body: RefUnwindSafe,

§

impl<Body> Send for Message<Body>
where Body: Send,

§

impl<Body> Sync for Message<Body>
where Body: Sync,

§

impl<Body> Unpin for Message<Body>
where Body: Unpin,

§

impl<Body> UnwindSafe for Message<Body>
where Body: 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, 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.