[][src]Struct dialectic::types::Seq

pub struct Seq<P, Q = Done>(pub P, pub Q);

Sequence two sessions P and Q together using seq.

Trait Implementations

impl<E, P, Q> Actionable<E> for Seq<P, Q> where
    P: Scoped<E::Depth>,
    Q: Scoped<E::Depth>,
    E: Environment
[src]

type Action = Seq<P, Q>

The next actual channel action: Send, Recv, Offer, Choose, or Split. This steps through Loop, Break, and Continue transparently. Read more

type Env = E

The environment resulting from stepping through one or many Loop, Break, or Continue points to the next real channel action. Read more

impl<P: Clone, Q: Clone> Clone for Seq<P, Q>[src]

impl<P: Copy, Q: Copy> Copy for Seq<P, Q>[src]

impl<P: Debug, Q: Debug> Debug for Seq<P, Q>[src]

impl<P: Default, Q: Default> Default for Seq<P, Q>[src]

impl<P: Eq, Q: Eq> Eq for Seq<P, Q>[src]

impl<P: Hash, Q: Hash> Hash for Seq<P, Q>[src]

impl<P: Ord, Q: Ord> Ord for Seq<P, Q>[src]

impl<P: PartialEq, Q: PartialEq> PartialEq<Seq<P, Q>> for Seq<P, Q>[src]

impl<P: PartialOrd, Q: PartialOrd> PartialOrd<Seq<P, Q>> for Seq<P, Q>[src]

impl<P: Scoped<N>, Q: Scoped<N>, N: Unary> Scoped<N> for Seq<P, Q>[src]

impl<P: Session, Q: Session> Session for Seq<P, Q>[src]

type Dual = Seq<P::Dual, Q::Dual>

The dual to this session type, i.e. the session type required of the other end of the channel. Read more

impl<P, Q> StructuralEq for Seq<P, Q>[src]

impl<P, Q> StructuralPartialEq for Seq<P, Q>[src]

Auto Trait Implementations

impl<P, Q> RefUnwindSafe for Seq<P, Q> where
    P: RefUnwindSafe,
    Q: RefUnwindSafe
[src]

impl<P, Q> Send for Seq<P, Q> where
    P: Send,
    Q: Send
[src]

impl<P, Q> Sync for Seq<P, Q> where
    P: Sync,
    Q: Sync
[src]

impl<P, Q> Unpin for Seq<P, Q> where
    P: Unpin,
    Q: Unpin
[src]

impl<P, Q> UnwindSafe for Seq<P, Q> where
    P: UnwindSafe,
    Q: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> CallBy<'a, Mut> for T where
    T: 'a, 
[src]

type Type = &'a mut T

The type of Self when called by Convention.

impl<'a, T> CallBy<'a, Ref> for T where
    T: 'a, 
[src]

type Type = &'a T

The type of Self when called by Convention.

impl<'a, T> CallBy<'a, Val> for T[src]

type Type = T

The type of Self when called by Convention.

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.