2015-11-23 17:42:55 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
pub type FileID = String;
|
|
|
|
|
|
|
|
pub fn from_path_string(s: &String) -> FileID {
|
2015-11-27 15:55:18 +00:00
|
|
|
unimplemented!()
|
2015-11-23 17:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_path(p: &Path) -> FileID {
|
2015-11-27 15:55:18 +00:00
|
|
|
unimplemented!()
|
2015-11-23 17:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_pathbuf(p: &PathBuf) -> FileID {
|
|
|
|
from_path(p.as_path())
|
|
|
|
}
|
|
|
|
|