pub struct ZipAny3H<H1: Hazard, H2: Hazard, H3: Hazard> { /* private fields */ }
Expand description

Hazard specification for zip-any with 3 interfaces.

Trait Implementations§

source§

impl<H1: Clone + Hazard, H2: Clone + Hazard, H3: Clone + Hazard> Clone for ZipAny3H<H1, H2, H3>

source§

fn clone(&self) -> ZipAny3H<H1, H2, H3>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<H1: Debug + Hazard, H2: Debug + Hazard, H3: Debug + Hazard> Debug for ZipAny3H<H1, H2, H3>

source§

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

Formats the value using the given formatter. Read more
source§

impl<H1: Hazard, H2: Hazard, H3: Hazard> Hazard for ZipAny3H<H1, H2, H3>

§

type P = (HOption<<H1 as Hazard>::P>, HOption<<H2 as Hazard>::P>, HOption<<H3 as Hazard>::P>)

Payload type.
§

type R = (<H1 as Hazard>::R, <H2 as Hazard>::R, <H3 as Hazard>::R)

Resolver type.
source§

fn ready((p1, p2, p3): Self::P, (r1, r2, r3): Self::R) -> bool

Indicates whether the receiver of the payload is ready to receive the payload. Read more
source§

impl<H1: Copy + Hazard, H2: Copy + Hazard, H3: Copy + Hazard> Copy for ZipAny3H<H1, H2, H3>

Auto Trait Implementations§

§

impl<H1, H2, H3> RefUnwindSafe for ZipAny3H<H1, H2, H3>

§

impl<H1, H2, H3> Send for ZipAny3H<H1, H2, H3>
where H1: Send, H2: Send, H3: Send,

§

impl<H1, H2, H3> Sync for ZipAny3H<H1, H2, H3>
where H1: Sync, H2: Sync, H3: Sync,

§

impl<H1, H2, H3> Unpin for ZipAny3H<H1, H2, H3>
where H1: Unpin, H2: Unpin, H3: Unpin,

§

impl<H1, H2, H3> UnwindSafe for ZipAny3H<H1, H2, H3>
where H1: UnwindSafe, H2: UnwindSafe, H3: 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> RepeatExt for T
where T: Copy,

source§

fn repeat<const N: usize>(self) -> Array<T, N>

Returns an array with the given value repeated N times.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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

§

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.