Trait DynFnMut

Source
pub trait DynFnMut: FnMutOfArgs<Self::ArgsTuple, DynFnMut = Self> {
    type ArgsTuple;
}

Required Associated Types§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<A, B, C, D, E, F, G, H, TReturn> DynFnMut for dyn FnMut(A, B, C, D, E, F, G, H) -> TReturn

Source§

impl<A, B, C, D, E, F, G, TReturn> DynFnMut for dyn FnMut(A, B, C, D, E, F, G) -> TReturn

Source§

impl<A, B, C, D, E, F, TReturn> DynFnMut for dyn FnMut(A, B, C, D, E, F) -> TReturn

Source§

impl<A, B, C, D, E, TReturn> DynFnMut for dyn FnMut(A, B, C, D, E) -> TReturn

Source§

impl<A, B, C, D, TReturn> DynFnMut for dyn FnMut(A, B, C, D) -> TReturn

Source§

impl<A, B, C, TReturn> DynFnMut for dyn FnMut(A, B, C) -> TReturn

Source§

impl<A, B, TReturn> DynFnMut for dyn FnMut(A, B) -> TReturn

Source§

impl<A, TReturn> DynFnMut for dyn FnMut(A) -> TReturn

Source§

impl<TReturn> DynFnMut for dyn FnMut() -> TReturn

Implementors§