pub struct RustNativeBindingWriter<'s> { /* private fields */ }
Expand description
Writer of the source files used when building OpenCV to run on a native platform (as opposed to for example WASM)
Implementations§
Trait Implementations§
Source§impl<'s> Clone for RustNativeBindingWriter<'s>
impl<'s> Clone for RustNativeBindingWriter<'s>
Source§fn clone(&self) -> RustNativeBindingWriter<'s>
fn clone(&self) -> RustNativeBindingWriter<'s>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'s> Debug for RustNativeBindingWriter<'s>
impl<'s> Debug for RustNativeBindingWriter<'s>
Source§impl GeneratorVisitor<'_> for RustNativeBindingWriter<'_>
impl GeneratorVisitor<'_> for RustNativeBindingWriter<'_>
Source§fn wants_file(&mut self, path: &Path) -> bool
fn wants_file(&mut self, path: &Path) -> bool
Check whether the visitor is interested in entities from the specified file
Source§fn visit_module_comment(&mut self, comment: String)
fn visit_module_comment(&mut self, comment: String)
Top-level module comment
Source§fn visit_const(&mut self, cnst: Const<'_>)
fn visit_const(&mut self, cnst: Const<'_>)
Top-level constant
Source§fn visit_enum(&mut self, enm: Enum<'_>)
fn visit_enum(&mut self, enm: Enum<'_>)
Top-level enum
Source§fn visit_func(&mut self, func: Func<'_, '_>)
fn visit_func(&mut self, func: Func<'_, '_>)
Top-level function
Source§fn visit_typedef(&mut self, typedef: Typedef<'_, '_>)
fn visit_typedef(&mut self, typedef: Typedef<'_, '_>)
Top-level type alias
Source§fn visit_class(&mut self, class: Class<'_, '_>)
fn visit_class(&mut self, class: Class<'_, '_>)
Top-level class or an internal class of another class
Source§fn visit_generated_type(&mut self, typ: GeneratedType<'_, '_>)
fn visit_generated_type(&mut self, typ: GeneratedType<'_, '_>)
Dependent generated type like
std::vector<Mat>
or std::tuple<1, 2, 3>
Auto Trait Implementations§
impl<'s> Freeze for RustNativeBindingWriter<'s>
impl<'s> RefUnwindSafe for RustNativeBindingWriter<'s>
impl<'s> Send for RustNativeBindingWriter<'s>
impl<'s> Sync for RustNativeBindingWriter<'s>
impl<'s> Unpin for RustNativeBindingWriter<'s>
impl<'s> UnwindSafe for RustNativeBindingWriter<'s>
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