[][src]Struct fizyr_rpc::ReceivedRequest

pub struct ReceivedRequest<Body> { /* fields omitted */ }

A handle for a received request.

The handle can be used to receive updates from the remote peer, and to send updates and the response to the remote peer.

Implementations

impl<Body> ReceivedRequest<Body>[src]

pub fn request_id(&self) -> u32[src]

Get the request ID of the received request.

pub fn service_id(&self) -> i32[src]

Get the service ID of the initial request message.

pub fn body(&self) -> &Body[src]

Get the body of the initial request message.

pub async fn next_message(&mut self) -> Result<Message<Body>, ReadMessageError>[src]

Receive the next message from the request.

This can only be an update message.

pub async fn send_update(
    &mut self,
    service_id: i32,
    body: impl Into<Body>
) -> Result<(), WriteMessageError>
[src]

Send an update for the request.

pub async fn send_response(
    self,
    service_id: i32,
    body: impl Into<Body>
) -> Result<(), WriteMessageError>
[src]

Send the final response.

pub async fn send_error_response(
    self,
    message: &str
) -> Result<(), WriteMessageError> where
    Body: Body
[src]

Send the final response with an error message.

Trait Implementations

impl<Body> Debug for ReceivedRequest<Body>[src]

Auto Trait Implementations

impl<Body> !RefUnwindSafe for ReceivedRequest<Body>[src]

impl<Body> Send for ReceivedRequest<Body> where
    Body: Send
[src]

impl<Body> Sync for ReceivedRequest<Body> where
    Body: Send + Sync
[src]

impl<Body> Unpin for ReceivedRequest<Body> where
    Body: Unpin
[src]

impl<Body> !UnwindSafe for ReceivedRequest<Body>[src]

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