Code

Trait Code 

Source
pub trait Code {
    // Required methods
    fn path(&self) -> &str;
    fn into_string(self) -> Result<String>;
}

Required Methods§

Source

fn path(&self) -> &str

Source

fn into_string(self) -> Result<String>

Implementors§