Skip to main content

file_storage/path/convert/
from_folder.rs

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