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