pub struct Closure4<S, R, T1, T2, T3, T4> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<S, R, T1, T2, T3, T4> Fn(T1, T2, T3, T4) for Closure4<S, R, T1, T2, T3, T4>
impl<S, R, T1, T2, T3, T4> Fn(T1, T2, T3, T4) for Closure4<S, R, T1, T2, T3, T4>
Source§extern "rust-call" fn call(
&self,
(T1, T2, T3, T4): (T1, T2, T3, T4),
) -> Self::Output
extern "rust-call" fn call( &self, (T1, T2, T3, T4): (T1, T2, T3, T4), ) -> Self::Output
🔬This is a nightly-only experimental API. (
fn_traits)Performs the call operation.
Source§impl<S, R, T1, T2, T3, T4> FnMut(T1, T2, T3, T4) for Closure4<S, R, T1, T2, T3, T4>
impl<S, R, T1, T2, T3, T4> FnMut(T1, T2, T3, T4) for Closure4<S, R, T1, T2, T3, T4>
Source§extern "rust-call" fn call_mut(
&mut self,
(T1, T2, T3, T4): (T1, T2, T3, T4),
) -> Self::Output
extern "rust-call" fn call_mut( &mut self, (T1, T2, T3, T4): (T1, T2, T3, T4), ) -> Self::Output
🔬This is a nightly-only experimental API. (
fn_traits)Performs the call operation.
impl<S, R, T1, T2, T3, T4> Copy for Closure4<S, R, T1, T2, T3, T4>where
S: Copy,
impl<S, R, T1, T2, T3, T4> Eq for Closure4<S, R, T1, T2, T3, T4>where
S: Eq,
Auto Trait Implementations§
impl<S, R, T1, T2, T3, T4> Freeze for Closure4<S, R, T1, T2, T3, T4>where
S: Freeze,
impl<S, R, T1, T2, T3, T4> RefUnwindSafe for Closure4<S, R, T1, T2, T3, T4>where
S: RefUnwindSafe,
impl<S, R, T1, T2, T3, T4> Send for Closure4<S, R, T1, T2, T3, T4>where
S: Send,
impl<S, R, T1, T2, T3, T4> Sync for Closure4<S, R, T1, T2, T3, T4>where
S: Sync,
impl<S, R, T1, T2, T3, T4> Unpin for Closure4<S, R, T1, T2, T3, T4>where
S: Unpin,
impl<S, R, T1, T2, T3, T4> UnwindSafe for Closure4<S, R, T1, T2, T3, T4>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