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