StrHandle

Trait StrHandle 

Source
pub trait StrHandle: AsRef<str> {
    // Provided method
    fn split_path(&self) -> (&str, &str) { ... }
}

Provided Methods§

Source

fn split_path(&self) -> (&str, &str)

Implementors§

Source§

impl<T: AsRef<str>> StrHandle for T