3 use std::path::PathBuf;
5 use crate::file_handler::{FileType, FileHandlerStrategy};
7 impl FileHandlerStrategy for Strategy {
8 fn is(&self, path: &PathBuf) -> bool {
12 fn identify(&self) -> FileType {
16 fn can_handle(&self, path: &PathBuf) -> bool {
20 fn handle(&self, path: &PathBuf) {
21 println!("Should copy {}", path.display())