ReceiveResult

Enum ReceiveResult 

Source
pub enum ReceiveResult<E: UserEvent> {
    Success(Option<E::Argument>),
    Timeout,
}
Expand description

Receiver poll return value.

Variants§

§

Success(Option<E::Argument>)

Success received one event message

§

Timeout

Receive event message timeout

Implementations§

Source§

impl<E: UserEvent> ReceiveResult<E>

Source

pub fn success(self) -> Result<Option<E::Argument>, CompleteQError>

Convert ReceiveResult structure into Result<(),CompleteQError>

If timeout this method will return [Err(CompleteQError::Timeout)]

Source

pub fn is_timeout(&self) -> bool

Helper method to detect if ReceiveResult enum is ReceiveResult::Timeout

Auto Trait Implementations§

§

impl<E> Freeze for ReceiveResult<E>
where <E as UserEvent>::Argument: Freeze,

§

impl<E> RefUnwindSafe for ReceiveResult<E>

§

impl<E> Send for ReceiveResult<E>

§

impl<E> Sync for ReceiveResult<E>
where <E as UserEvent>::Argument: Sync,

§

impl<E> Unpin for ReceiveResult<E>
where <E as UserEvent>::Argument: Unpin,

§

impl<E> UnwindSafe for ReceiveResult<E>
where <E as UserEvent>::Argument: 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.