[][src]Trait ferrite_session::Context

pub trait Context: Send + 'static {
    type Endpoints: Sized + Send;
    type Length: Nat;
}

A list of context for input. It has multiple implementations including crate::base::Context.

Associated Types

Loading content...

Implementations on Foreign Types

impl Context for ()[src]

type Endpoints = ()

type Length = Z

impl<P, R> Context for (P, R) where
    P: Slot,
    R: Context
[src]

type Endpoints = (P::Endpoint, R::Endpoints)

type Length = S<R::Length>

Loading content...

Implementors

Loading content...