1 2 3 4 5
use std::{fs::Metadata, io, path::Path}; pub async fn metadata(_path: impl AsRef<Path>) -> io::Result<Metadata> { todo!() }