Struct sync_wait_object::ManualResetEvent
source · pub struct ManualResetEvent(_);
Expand description
Wrapper of WaitEvent
of type bool
, which focuses on waiting for true
without resetting.
Implementations§
Trait Implementations§
source§impl Clone for ManualResetEvent
impl Clone for ManualResetEvent
source§fn clone(&self) -> ManualResetEvent
fn clone(&self) -> ManualResetEvent
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 moresource§impl From<ManualResetEvent> for WaitEvent<bool>
impl From<ManualResetEvent> for WaitEvent<bool>
source§fn from(value: ManualResetEvent) -> Self
fn from(value: ManualResetEvent) -> Self
Converts to this type from the input type.