☰
FitForCBox
Required Associated Types
CBoxWrapped
Implementations on Foreign Types
[T]
dyn Send + FnMut() -> Ret + 'static
dyn Send + FnMut(A1) -> Ret + 'static
Implementors
In safer_ffi::boxed
?
Trait
safer_ffi
::
boxed
::
FitForCBox
source
·
[
−
]
pub trait FitForCBox { type
CBoxWrapped
; }
Available on
crate feature
alloc
only.
Required Associated Types
§
source
type
CBoxWrapped
Implementations on Foreign Types
§
source
§
impl<T:
Sized
>
FitForCBox
for
[T]
§
type
CBoxWrapped
=
slice_boxed
<T>
source
§
impl<Ret, A1>
FitForCBox
for dyn
Send
+
FnMut
(A1) -> Ret + 'static
where Ret:
ReprC
, A1:
ReprC
,
§
type
CBoxWrapped
=
BoxDynFnMut1
<Ret, A1>
source
§
impl<Ret>
FitForCBox
for dyn
Send
+
FnMut
() -> Ret + 'static
where Ret:
ReprC
,
§
type
CBoxWrapped
=
BoxDynFnMut0
<Ret>
Implementors
§
source
§
impl<T:
Sized
>
FitForCBox
for T
§
type
CBoxWrapped
=
Box_
<T>