Trait esp32s3_hal::xtensa_lx::mutex::mutex_trait::prelude::TupleExt03
pub trait TupleExt03 {
type T1;
type T2;
type T3;
// Required method
fn lock<R>(
&mut self,
f: impl FnOnce(&mut Self::T1, &mut Self::T2, &mut Self::T3) -> R
) -> R;
}
Expand description
Auto-generated tuple implementation, see Mutex
for details.
Required Associated Types§
type T1
type T1
Data protected by the mutex.
type T2
type T2
Data protected by the mutex.
type T3
type T3
Data protected by the mutex.