[][src]Struct safer_ffi::closure::borrowed::RefDynFnMut0

#[repr(C)]pub struct RefDynFnMut0<'lt, Ret> where
    Ret: ReprC
{ /* fields omitted */ }

&'lt mut (dyn 'lt + Send + FnMut() -> Ret)

C Layout

Implementations

impl<'lt, Ret> RefDynFnMut0<'lt, Ret> where
    Ret: ReprC
[src]

pub fn new<F>(f: &'lt mut F) -> Self where
    F: FnMut() -> Ret,
    F: 'lt + Send
[src]

impl<'_, Ret> RefDynFnMut0<'_, Ret> where
    Ret: ReprC
[src]

pub fn call(&mut self) -> Ret[src]

Trait Implementations

impl<'_, Ret> Debug for RefDynFnMut0<'_, Ret> where
    Ret: ReprC
[src]

impl<'lt, Ret> ReprC for RefDynFnMut0<'lt, Ret> where
    NonNull<c_void>: ReprC,
    <NonNull<c_void> as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    unsafe extern "C" fn(env_ptr: NonNull<c_void>) -> Ret: ReprC,
    <unsafe extern "C" fn(env_ptr: NonNull<c_void>) -> Ret as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    PhantomData<&'lt ()>: ReprC,
    <PhantomData<&'lt ()> as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    Ret: ReprC,
    Ret: ReprC
[src]

type CLayout = RefDynFnMut0_Layout<'lt, Ret>

The CType having the same layout as Self.

impl<'_, Ret> Send for RefDynFnMut0<'_, Ret> where
    Ret: ReprC
[src]

&'_ mut (dyn Send + ...) : Send

Auto Trait Implementations

impl<'lt, Ret> RefUnwindSafe for RefDynFnMut0<'lt, Ret>

impl<'lt, Ret> !Sync for RefDynFnMut0<'lt, Ret>

impl<'lt, Ret> Unpin for RefDynFnMut0<'lt, Ret>

impl<'lt, Ret> UnwindSafe for RefDynFnMut0<'lt, Ret>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ManuallyDropMut for T

type Ret = ManuallyDrop<T>

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.