Skip to main content

Response

Struct Response 

Source
pub struct Response<Res> { /* private fields */ }
Expand description

Response<Res> is used to asynchronously wait for and retrieve the result of a Request<Req, Res> sent to a Actor.

Implementations§

Source§

impl<Res> Response<Res>

Source

pub async fn recv(self) -> Result<Res, ReqErr>

Asynchronously wait for a value from this channel, returning an error if the corresponding Request<_,_> has been dropped.

Source

pub async fn recv_timeout(self, dur: Duration) -> Result<Res, ReqErr>

Asynchronously wait for a value from this channel, returning an error if the given Duration elapses before receiving the expected response, or if the corresponding Request<_,_> has been dropped.

Trait Implementations§

Source§

impl<Res> Debug for Response<Res>
where Res: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Res> Freeze for Response<Res>

§

impl<Res> RefUnwindSafe for Response<Res>

§

impl<Res> Send for Response<Res>
where Res: Send,

§

impl<Res> Sync for Response<Res>
where Res: Send,

§

impl<Res> Unpin for Response<Res>

§

impl<Res> UnsafeUnpin for Response<Res>

§

impl<Res> UnwindSafe for Response<Res>

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.