Skip to main content

IdePathConverter

Trait IdePathConverter 

Source
pub trait IdePathConverter {
    // Required methods
    fn to_local_path(&self, ide_path: &str) -> String;
    fn to_ide_path(&self, local_path: &str) -> String;
}
Expand description

Path converter trait for IDE communication

Required Methods§

Source

fn to_local_path(&self, ide_path: &str) -> String

Convert path from IDE format to local format

Source

fn to_ide_path(&self, local_path: &str) -> String

Convert path from local format to IDE format

Implementors§