diff --git a/src/run/mod.rs b/src/run/mod.rs index e53c4025..158b2b7a 100644 --- a/src/run/mod.rs +++ b/src/run/mod.rs @@ -167,6 +167,12 @@ impl Run { self.category_name.push_str(name.as_ref()); } + /// Returns the path of the associated splits file in the file system. + #[inline] + pub fn path(&mut self) -> &Option { + &self.path + } + /// Sets the path of the associated splits file in the file system. #[inline] pub fn set_path(&mut self, path: Option) {