PythonExt

Trait PythonExt 

Source
pub trait PythonExt {
    // Required method
    fn escape_for_python(&self) -> String;
}

Required Methods§

Source

fn escape_for_python(&self) -> String

Escape a Path for use in Python code.

Implementors§

Source§

impl<T: AsRef<Path>> PythonExt for T