Struct opencv_binding_generator::FuncId 
source · [−]pub struct FuncId<'f> { /* private fields */ }Implementations
sourceimpl<'f> FuncId<'f>
 
impl<'f> FuncId<'f>
sourcepub fn new<const ARGS: usize>(
    name: &'static str,
    args: [&'static str; ARGS]
) -> FuncId<'static>
 
pub fn new<const ARGS: usize>(
    name: &'static str,
    args: [&'static str; ARGS]
) -> FuncId<'static>
Parameters
name: fully qualified C++ function name (e.g. cv::Mat::create) args: C++ argument names (“unnamed” for unnamed ones)
pub fn from_entity(entity: Entity<'_>) -> Self
pub fn name(&self) -> &str
pub fn args(&self) -> &[Cow<'_, str>]
Trait Implementations
impl<'f> Eq for FuncId<'f>
impl<'f> StructuralEq for FuncId<'f>
impl<'f> StructuralPartialEq for FuncId<'f>
Auto Trait Implementations
impl<'f> RefUnwindSafe for FuncId<'f>
impl<'f> Send for FuncId<'f>
impl<'f> Sync for FuncId<'f>
impl<'f> Unpin for FuncId<'f>
impl<'f> UnwindSafe for FuncId<'f>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more