Struct opencv::core::ClassWithKeywordProperties
source · #[repr(C)]pub struct ClassWithKeywordProperties {
pub lambda: i32,
pub except: i32,
}Fields§
§lambda: i32§except: i32Implementations§
source§impl ClassWithKeywordProperties
impl ClassWithKeywordProperties
sourcepub fn new(
lambda_arg: i32,
except_arg: i32
) -> Result<ClassWithKeywordProperties>
pub fn new( lambda_arg: i32, except_arg: i32 ) -> Result<ClassWithKeywordProperties>
C++ default parameters
- lambda_arg: 24
- except_arg: 42
sourcepub fn new_def() -> Result<ClassWithKeywordProperties>
pub fn new_def() -> Result<ClassWithKeywordProperties>
Note
This alternative version of [new] function uses the following default values for its arguments:
- lambda_arg: 24
- except_arg: 42
Trait Implementations§
source§impl Clone for ClassWithKeywordProperties
impl Clone for ClassWithKeywordProperties
source§fn clone(&self) -> ClassWithKeywordProperties
fn clone(&self) -> ClassWithKeywordProperties
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 ClassWithKeywordProperties
impl Debug for ClassWithKeywordProperties
source§impl PartialEq for ClassWithKeywordProperties
impl PartialEq for ClassWithKeywordProperties
source§fn eq(&self, other: &ClassWithKeywordProperties) -> bool
fn eq(&self, other: &ClassWithKeywordProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ClassWithKeywordProperties
impl StructuralPartialEq for ClassWithKeywordProperties
Auto Trait Implementations§
impl RefUnwindSafe for ClassWithKeywordProperties
impl Send for ClassWithKeywordProperties
impl Sync for ClassWithKeywordProperties
impl Unpin for ClassWithKeywordProperties
impl UnwindSafe for ClassWithKeywordProperties
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