#[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 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 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§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