pub struct Closure3<S, R, T1, T2, T3> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<S, R, T1, T2, T3> Fn(T1, T2, T3) for Closure3<S, R, T1, T2, T3>
impl<S, R, T1, T2, T3> Fn(T1, T2, T3) for Closure3<S, R, T1, T2, T3>
Source§extern "rust-call" fn call(
&self,
(T1, T2, T3): (T1, T2, T3),
) -> Self::Output
extern "rust-call" fn call( &self, (T1, T2, T3): (T1, T2, T3), ) -> Self::Output
🔬This is a nightly-only experimental API. (
fn_traits)Performs the call operation.
Source§impl<S, R, T1, T2, T3> FnMut(T1, T2, T3) for Closure3<S, R, T1, T2, T3>
impl<S, R, T1, T2, T3> FnMut(T1, T2, T3) for Closure3<S, R, T1, T2, T3>
Source§extern "rust-call" fn call_mut(
&mut self,
(T1, T2, T3): (T1, T2, T3),
) -> Self::Output
extern "rust-call" fn call_mut( &mut self, (T1, T2, T3): (T1, T2, T3), ) -> Self::Output
🔬This is a nightly-only experimental API. (
fn_traits)Performs the call operation.
impl<S, R, T1, T2, T3> Copy for Closure3<S, R, T1, T2, T3>where
S: Copy,
impl<S, R, T1, T2, T3> Eq for Closure3<S, R, T1, T2, T3>where
S: Eq,
Auto Trait Implementations§
impl<S, R, T1, T2, T3> Freeze for Closure3<S, R, T1, T2, T3>where
S: Freeze,
impl<S, R, T1, T2, T3> RefUnwindSafe for Closure3<S, R, T1, T2, T3>where
S: RefUnwindSafe,
impl<S, R, T1, T2, T3> Send for Closure3<S, R, T1, T2, T3>where
S: Send,
impl<S, R, T1, T2, T3> Sync for Closure3<S, R, T1, T2, T3>where
S: Sync,
impl<S, R, T1, T2, T3> Unpin for Closure3<S, R, T1, T2, T3>where
S: Unpin,
impl<S, R, T1, T2, T3> UnwindSafe for Closure3<S, R, T1, T2, T3>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more