diff options
-rw-r--r-- | tvix/castore/src/import.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/castore/src/import.rs b/tvix/castore/src/import.rs index cf4b42fb6826..b0d2786e0412 100644 --- a/tvix/castore/src/import.rs +++ b/tvix/castore/src/import.rs @@ -44,6 +44,12 @@ impl From<CastoreError> for Error { } } +impl From<Error> for std::io::Error { + fn from(value: Error) -> Self { + std::io::Error::new(std::io::ErrorKind::Other, value) + } +} + /// This processes a given [walkdir::DirEntry] and returns a /// proto::node::Node, depending on the type of the entry. /// |