Skip to main content

Request

Struct Request 

Source
pub struct Request<Req, Res> { /* private fields */ }
Expand description

Represents a request sent to a Actor. Request holds the data sent to a Actor and provides a channel to reply back to the sender.

Implementations§

Source§

impl<Req, Res> Request<Req, Res>

Source

pub fn data(&self) -> &Req

Returns a reference to the data inside the Request.

Source

pub fn reply(&self, res: Res)

Sends a response back to the requester.

Trait Implementations§

Source§

impl<Req, Res> Debug for Request<Req, Res>
where Req: Debug, Res: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Req, Res> Freeze for Request<Req, Res>
where Req: Freeze,

§

impl<Req, Res> RefUnwindSafe for Request<Req, Res>
where Req: RefUnwindSafe,

§

impl<Req, Res> Send for Request<Req, Res>
where Req: Send, Res: Send,

§

impl<Req, Res> Sync for Request<Req, Res>
where Req: Sync, Res: Send,

§

impl<Req, Res> Unpin for Request<Req, Res>
where Req: Unpin,

§

impl<Req, Res> UnsafeUnpin for Request<Req, Res>
where Req: UnsafeUnpin,

§

impl<Req, Res> UnwindSafe for Request<Req, Res>
where Req: 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>,

Source§

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

Source§

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.