Skip to main content

BinaryFnMut

Trait BinaryFnMut 

Source
pub trait BinaryFnMut<A1, A2>: FnMut(A1, A2) -> Self::Ret {
    type Ret;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<A1, A2, R, T> BinaryFnMut<A1, A2> for T
where T: FnMut(A1, A2) -> R,

Source§

type Ret = R