Enum opencv::core::Event_CreateFlags
source · #[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 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 Debug for Event_CreateFlags
impl Debug for Event_CreateFlags
source§impl PartialEq for Event_CreateFlags
impl PartialEq for Event_CreateFlags
source§fn eq(&self, other: &Event_CreateFlags) -> bool
fn eq(&self, other: &Event_CreateFlags) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Event_CreateFlags
impl Eq for Event_CreateFlags
impl StructuralEq for Event_CreateFlags
impl StructuralPartialEq for Event_CreateFlags
Auto Trait Implementations§
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