pub trait StrExt {
    fn to_snake_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;
}

Required Methods§

Implementations on Foreign Types§

Implementors§