Struct flipperzero_sys::ValueMutex
source · #[repr(C)]pub struct ValueMutex {
pub value: *mut c_void,
pub size: usize,
pub mutex: *mut FuriMutex,
}Expand description
== ValueMutex ==
The most simple concept is ValueMutex. It is wrapper around mutex and value pointer. You can take and give mutex to work with value and read and write value.
Fields§
§value: *mut c_void§size: usize§mutex: *mut FuriMutexTrait Implementations§
source§impl Clone for ValueMutex
impl Clone for ValueMutex
source§fn clone(&self) -> ValueMutex
fn clone(&self) -> ValueMutex
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more