move_to_path

Macro move_to_path 

Source
macro_rules! move_to_path {
    ($from:expr,$to:expr) => { ... };
}
Expand description

move file from a path to another path

   if let Ok(_r) = move_to_path!("./foo.txt", "./src/foo.txt") {
  }