Skip to main content

QueueSet4Selected

Enum QueueSet4Selected 

Source
pub enum QueueSet4Selected<T0, T1, T2, T3> {
    Q0(T0),
    Q1(T1),
    Q2(T2),
    Q3(T3),
}
Expand description

Indicates which queue in the set was selected and carries the received item.

Variants§

§

Q0(T0)

An item was received from the corresponding queue.

§

Q1(T1)

An item was received from the corresponding queue.

§

Q2(T2)

An item was received from the corresponding queue.

§

Q3(T3)

An item was received from the corresponding queue.

Auto Trait Implementations§

§

impl<T0, T1, T2, T3> Freeze for QueueSet4Selected<T0, T1, T2, T3>
where T0: Freeze, T1: Freeze, T2: Freeze, T3: Freeze,

§

impl<T0, T1, T2, T3> RefUnwindSafe for QueueSet4Selected<T0, T1, T2, T3>
where T0: RefUnwindSafe, T1: RefUnwindSafe, T2: RefUnwindSafe, T3: RefUnwindSafe,

§

impl<T0, T1, T2, T3> Send for QueueSet4Selected<T0, T1, T2, T3>
where T0: Send, T1: Send, T2: Send, T3: Send,

§

impl<T0, T1, T2, T3> Sync for QueueSet4Selected<T0, T1, T2, T3>
where T0: Sync, T1: Sync, T2: Sync, T3: Sync,

§

impl<T0, T1, T2, T3> Unpin for QueueSet4Selected<T0, T1, T2, T3>
where T0: Unpin, T1: Unpin, T2: Unpin, T3: Unpin,

§

impl<T0, T1, T2, T3> UnsafeUnpin for QueueSet4Selected<T0, T1, T2, T3>
where T0: UnsafeUnpin, T1: UnsafeUnpin, T2: UnsafeUnpin, T3: UnsafeUnpin,

§

impl<T0, T1, T2, T3> UnwindSafe for QueueSet4Selected<T0, T1, T2, T3>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = !

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

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

Performs the conversion.