Skip to main content

WrapCall

Trait WrapCall 

Source
pub trait WrapCall {
    type Wrapped;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl WrapCall for Nil

Source§

impl<Head, Tail> WrapCall for Cons<Head, Tail>
where Tail: WrapCall,

Source§

type Wrapped = π<Call<Head>, <Tail as WrapCall>::Wrapped>

Implementors§