Trait cut::AppendContext
source · [−]pub trait AppendContext<R>: Context where
R: Context, {
type Appended: Context;
fn append_context(
channels1: Self::Endpoints,
channels2: <R as Context>::Endpoints
) -> <Self::Appended as Context>::Endpoints;
fn split_context(
channels: <Self::Appended as Context>::Endpoints
) -> (Self::Endpoints, <R as Context>::Endpoints);
}