Searched refs:RustModulePath (Results 1 – 1 of 1) sorted by relevance
277 struct RustModulePath(String); struct279 impl RustModulePath { implementation281 fn join(&self, path: &str) -> RustModulePath { in join() argument283 return RustModulePath(path.to_string()); in join()289 RustModulePath(format!("{}::{}", self.0, path)) in join()293 impl Display for RustModulePath { implementation299 impl From<&str> for RustModulePath { implementation301 RustModulePath(path.to_string()) in from()311 ) -> Result<BTreeMap<ProtoPath, RustModulePath>, String> { in get_extern_paths() argument313 let rust_path = RustModulePath(crate_name.to_string()); in get_extern_paths()[all …]