Struct dialectic::types::Continue[][src]

pub struct Continue<const I: usize>;

Repeat a Loop. The type-level index points to the loop to be repeated, counted from the innermost starting at 0.

Trait Implementations

impl<const I: usize> Clone for Continue<I>[src]

impl<const I: usize> Copy for Continue<I>[src]

impl<const I: usize> Debug for Continue<I>[src]

impl<const I: usize> Default for Continue<I>[src]

impl<const I: usize> Eq for Continue<I>[src]

impl<const I: usize> HasDual for Continue<I>[src]

type DualSession = Continue<I>

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

impl<const I: usize> Hash for Continue<I>[src]

impl<N: Unary, M: Unary, P: Unary, Level: Unary, const I: usize, const J: usize> Lift<N, Level> for Continue<I> where
    Number<I>: ToUnary<AsUnary = M>,
    (M, N): Add<Result = P>,
    P: ToConstant<AsConstant = Number<J>>,
    (M, Level): Compare<Continue<I>, Continue<J>, Continue<J>>, 
[src]

type Lifted = <(M, Level) as Compare<Continue<I>, Continue<J>, Continue<J>>>::Result

The result of the lifting operation.

impl<const I: usize> Ord for Continue<I>[src]

impl<const I: usize> PartialEq<Continue<I>> for Continue<I>[src]

impl<const I: usize> PartialOrd<Continue<I>> for Continue<I>[src]

impl<N: Unary, M: Unary, const I: usize> Scoped<N> for Continue<I> where
    Number<I>: ToUnary<AsUnary = M>,
    M: LessThan<N>, 
[src]

impl<const I: usize> StructuralEq for Continue<I>[src]

impl<const I: usize> StructuralPartialEq for Continue<I>[src]

impl<P, N: Unary, M: Unary, const I: usize> Subst<P, N> for Continue<I> where
    Number<I>: ToUnary<AsUnary = M>,
    (N, M): Compare<Continue<I>, P, Continue<I>>,
    <(N, M) as Compare<Continue<I>, P, Continue<I>>>::Result: 'static, 
[src]

type Substituted = <(N, M) as Compare<Continue<I>, P, Continue<I>>>::Result

The result of the substitution.

impl<P, N: Unary, const I: usize> Then<P, N> for Continue<I>[src]

type Combined = Continue<I>

The combined type resulting from substituting P for Done in Self.

Auto Trait Implementations

impl<const I: usize> RefUnwindSafe for Continue<I>

impl<const I: usize> Send for Continue<I>

impl<const I: usize> Sync for Continue<I>

impl<const I: usize> Unpin for Continue<I>

impl<const I: usize> UnwindSafe for Continue<I>

Blanket Implementations

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

impl<'a, T, S> As<'a, Val, T> for S where
    S: Into<T>, 
[src]

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

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

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

type Type = &'a mut T

The type of Self when called by Convention.

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

type Type = &'a T

The type of Self when called by Convention.

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

type Type = T

The type of Self when called by Convention.

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

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

impl<'a, T> Convert<'a, Mut, Val> for T where
    T: 'a + Clone
[src]

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

impl<'a, T> Convert<'a, Ref, Val> for T where
    T: 'a + Clone
[src]

impl<'a, T> Convert<'a, Val, Val> for T[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.