Trait opencv_binding_generator::StrExt

source ·
pub trait StrExt {
    // Required methods
    fn cpp_name_to_rust_case(&self) -> String;
    fn lines_with_nl(&self) -> LinesWithNl<'_>;
    fn detect_indent(&self) -> Indent;
    fn compile_interpolation(&self) -> CompiledInterpolation<'_>;
    fn trim_start_idx(&self) -> usize;
    fn trim_end_idx(&self) -> usize;
    fn localname(&self) -> &str;
    fn namespace(&self) -> &str;
    fn module(&self) -> &str;
    fn cpp_name_from_fullname(&self, style: CppNameStyle) -> &str;
}

Required Methods§

source

fn cpp_name_to_rust_case(&self) -> String

source

fn lines_with_nl(&self) -> LinesWithNl<'_>

source

fn detect_indent(&self) -> Indent

source

fn compile_interpolation(&self) -> CompiledInterpolation<'_>

source

fn trim_start_idx(&self) -> usize

source

fn trim_end_idx(&self) -> usize

source

fn localname(&self) -> &str

For cv::rapid::Rapid returns Rapid

source

fn namespace(&self) -> &str

For cv::rapid::Rapid returns cv::rapid

source

fn module(&self) -> &str

For crate::rapid::Rapid and rapid::Rapid returns rapid

source

fn cpp_name_from_fullname(&self, style: CppNameStyle) -> &str

Implementations on Foreign Types§

source§

impl StrExt for str

Implementors§