Skip to main content

file_storage/path/convert/
from_file.rs

1use crate::{FilePath, StoragePath};
2
3impl From<FilePath> for StoragePath {
4    fn from(path: FilePath) -> Self {
5        path.to_path()
6    }
7}