Struct fizyr_rpc::ReceivedRequest[][src]

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

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 recv_update(&mut self) -> Result<Message<Body>, ReadMessageError>[src]

Receive the next update message of the request from the remote peer.

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

Send an update for the request to the remote peer.

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

Send the final response for the request to the remote peer.

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]

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<Body> !RefUnwindSafe for ReceivedRequest<Body>

impl<Body> Send for ReceivedRequest<Body> where
    Body: Send

impl<Body> Sync for ReceivedRequest<Body> where
    Body: Send + Sync

impl<Body> Unpin for ReceivedRequest<Body> where
    Body: Unpin

impl<Body> !UnwindSafe for ReceivedRequest<Body>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.