Struct safer_ffi::closure::borrowed::RefDynFnMut6

source ·
#[repr(C)]
pub struct RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC,
{ /* private fields */ }
Expand description

&'lt mut (dyn 'lt + Send + FnMut(A6, A5, A4, A3, A2, A1) -> Ret)

§C Layout

Implementations§

source§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC,

source

pub fn new<F>(f: &'lt mut F) -> Self
where F: FnMut(A6, A5, A4, A3, A2, A1) -> Ret + 'lt + Send,

source§

impl<Ret, A6, A5, A4, A3, A2, A1> RefDynFnMut6<'_, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC,

source

pub fn call(&mut self, A6: A6, A5: A5, A4: A4, A3: A3, A2: A2, A1: A1) -> Ret

Trait Implementations§

source§

impl<Ret, A6, A5, A4, A3, A2, A1> Debug for RefDynFnMut6<'_, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC,

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'lt, F, Ret, A6, A5, A4, A3, A2, A1> From<&'lt mut F> for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC, F: Fn(A6, A5, A4, A3, A2, A1) -> Ret + Send + 'static,

source§

fn from(f: &'lt mut F) -> Self

Converts to this type from the input type.
source§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> ReprC for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC + ReprC, A6: ReprC + ReprC, A5: ReprC + ReprC, A4: ReprC + ReprC, A3: ReprC + ReprC, A2: ReprC + ReprC, A1: ReprC + ReprC, NonNull<c_void>: ConcreteReprC, unsafe extern "C" fn(env_ptr: NonNull<c_void>, _: A6, _: A5, _: A4, _: A3, _: A2, _: A1) -> Ret: ConcreteReprC, PhantomData<&'lt ()>: ConcreteReprC,

§

type CLayout = RefDynFnMut6_Layout<'lt, Ret, A6, A5, A4, A3, A2, A1>

The CType having the same layout as Self.
source§

fn is_valid(_it: &Self::CLayout) -> bool

Sanity checks that can be performed on an instance of the CType layout. Read more
source§

impl<Ret, A6, A5, A4, A3, A2, A1> Send for RefDynFnMut6<'_, Ret, A6, A5, A4, A3, A2, A1>
where Ret: ReprC, A6: ReprC, A5: ReprC, A4: ReprC, A3: ReprC, A2: ReprC, A1: ReprC,

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

Auto Trait Implementations§

§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> Freeze for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>

§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> RefUnwindSafe for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>

§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> !Sync for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>

§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> Unpin for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>

§

impl<'lt, Ret, A6, A5, A4, A3, A2, A1> UnwindSafe for RefDynFnMut6<'lt, Ret, A6, A5, A4, A3, A2, A1>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CompatExt for T

source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
source§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

Available on crate feature alloc only.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

source§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UpcastAny for T
where T: 'static,

source§

fn upcast_any(&self) -> &(dyn Any + 'static)

Available on crate feature headers only.