pub trait File: Read + Write + Debug { type Metadata: Metadata; // Required method fn metadata(&self) -> Result<Self::Metadata>; }