pub trait DirEntry { type Metadata: Metadata; // Required methods fn path(&self) -> String; fn metadata(&self) -> Result<Self::Metadata>; }