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 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<'s> Debug for RustNativeBindingWriter<'s>
impl<'s> Debug for RustNativeBindingWriter<'s>
source§impl Drop for RustNativeBindingWriter<'_>
impl Drop for RustNativeBindingWriter<'_>
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> 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