pub trait RustElement: Element {
    fn rust_module(&self) -> Cow<'_, str>;
    fn rust_name(&self, style: NameStyle) -> Cow<'_, str>;
    fn rendered_doc_comment_with_prefix(
        &self,
        prefix: &str,
        opencv_version: &str
    ) -> String; fn rust_namespace(&self) -> Cow<'_, str> { ... } fn rust_leafname(&self, _fish_style: FishStyle) -> Cow<'_, str> { ... } fn rendered_doc_comment(&self, opencv_version: &str) -> String { ... } }

Required Methods§

Provided Methods§

Implementors§