pub trait FitForCBox {
    type CBoxWrapped;
}
Available on crate feature alloc only.

Required Associated Types§

Implementations on Foreign Types§

source§

impl<Ret, A1> FitForCBox for dyn Send + FnMut(A1) -> Ret + 'staticwhere Ret: ReprC, A1: ReprC,

§

type CBoxWrapped = BoxDynFnMut1<Ret, A1>

source§

impl<T: Sized> FitForCBox for [T]

source§

impl<Ret> FitForCBox for dyn Send + FnMut() -> Ret + 'staticwhere Ret: ReprC,

Implementors§

source§

impl<T: Sized> FitForCBox for T