Skip to content
Snippets Groups Projects
Verified Commit 227fc4a0 authored by Eduardo Trujillo's avatar Eduardo Trujillo
Browse files

feat(rundir): Add AsRef<Path> trait implementation

parent f8d36206
No related branches found
No related tags found
No related merge requests found
Pipeline #226 failed
......@@ -213,6 +213,12 @@ impl RunDir {
}
}
impl AsRef<Path> for RunDir {
fn as_ref(&self) -> &Path {
&self.path
}
}
#[cfg(test)]
mod tests {
use super::{RunDir, RunDirError};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment