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§
Sourcefn to_local_path(&self, ide_path: &str) -> String
fn to_local_path(&self, ide_path: &str) -> String
Convert path from IDE format to local format
Sourcefn to_ide_path(&self, local_path: &str) -> String
fn to_ide_path(&self, local_path: &str) -> String
Convert path from local format to IDE format