Enum opencv::core::Detail_TestOp
source · #[repr(C)]pub enum Detail_TestOp {
TEST_CUSTOM = 0,
TEST_EQ = 1,
TEST_NE = 2,
TEST_LE = 3,
TEST_LT = 4,
TEST_GE = 5,
TEST_GT = 6,
CV__LAST_TEST_OP = 7,
}
Variants§
TEST_CUSTOM = 0
TEST_EQ = 1
TEST_NE = 2
TEST_LE = 3
TEST_LT = 4
TEST_GE = 5
TEST_GT = 6
CV__LAST_TEST_OP = 7
Trait Implementations§
source§impl Clone for Detail_TestOp
impl Clone for Detail_TestOp
source§fn clone(&self) -> Detail_TestOp
fn clone(&self) -> Detail_TestOp
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 Detail_TestOp
impl Debug for Detail_TestOp
source§impl From<Detail_TestOp> for i32
impl From<Detail_TestOp> for i32
source§fn from(v: Detail_TestOp) -> Self
fn from(v: Detail_TestOp) -> Self
Converts to this type from the input type.
source§impl PartialEq for Detail_TestOp
impl PartialEq for Detail_TestOp
source§fn eq(&self, other: &Detail_TestOp) -> bool
fn eq(&self, other: &Detail_TestOp) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<i32> for Detail_TestOp
impl TryFrom<i32> for Detail_TestOp
impl Copy for Detail_TestOp
impl Eq for Detail_TestOp
impl StructuralPartialEq for Detail_TestOp
Auto Trait Implementations§
impl Freeze for Detail_TestOp
impl RefUnwindSafe for Detail_TestOp
impl Send for Detail_TestOp
impl Sync for Detail_TestOp
impl Unpin for Detail_TestOp
impl UnwindSafe for Detail_TestOp
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