Trait EntityWalkerExt

Source
pub trait EntityWalkerExt<'tu> {
    // Required method
    fn walk_opencv_entities(self, visitor: impl EntityWalkerVisitor<'tu>);
}
Expand description

Trait to recursively visit every clang Entity supported by the OpenCV binding generator

Required Methods§

Source

fn walk_opencv_entities(self, visitor: impl EntityWalkerVisitor<'tu>)

Recursively visits every clang Entity supported by the OpenCV binding generator starting from the self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'tu> EntityWalkerExt<'tu> for Entity<'tu>

Implementors§