Add id getter for FileID

This commit is contained in:
Matthias Beyer 2015-12-04 23:11:46 +01:00
parent 87d5852986
commit 261fbdd038
1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ impl FileID {
self.id_type.clone()
}
pub fn get_id(&self) -> Option<String> {
self.id.clone()
}
}
impl Debug for FileID {