#[repr(C)]pub enum Event_CreateFlags {
DEFAULT = 0,
BLOCKING_SYNC = 1,
DISABLE_TIMING = 2,
INTERPROCESS = 4,
}
Variants§
DEFAULT = 0
< Default event flag
BLOCKING_SYNC = 1
< Event uses blocking synchronization
DISABLE_TIMING = 2
< Event will not record timing data
INTERPROCESS = 4
< Event is suitable for interprocess use. DisableTiming must be set
Trait Implementations§
Source§impl Clone for Event_CreateFlags
impl Clone for Event_CreateFlags
Source§fn clone(&self) -> Event_CreateFlags
fn clone(&self) -> Event_CreateFlags
Returns a duplicate 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 Debug for Event_CreateFlags
impl Debug for Event_CreateFlags
Source§impl From<Event_CreateFlags> for i32
impl From<Event_CreateFlags> for i32
Source§fn from(v: Event_CreateFlags) -> Self
fn from(v: Event_CreateFlags) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Event_CreateFlags
impl PartialEq for Event_CreateFlags
Source§impl TryFrom<i32> for Event_CreateFlags
impl TryFrom<i32> for Event_CreateFlags
impl Copy for Event_CreateFlags
impl Eq for Event_CreateFlags
impl StructuralPartialEq for Event_CreateFlags
Auto Trait Implementations§
impl Freeze for Event_CreateFlags
impl RefUnwindSafe for Event_CreateFlags
impl Send for Event_CreateFlags
impl Sync for Event_CreateFlags
impl Unpin for Event_CreateFlags
impl UnwindSafe for Event_CreateFlags
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