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§
Sourcefn walk_opencv_entities(self, visitor: impl EntityWalkerVisitor<'tu>)
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.