fn write_path()

in src/download.rs [523:530]


    fn write_path(&self) -> Result<&Path> {
        let write_path = self
            .temp_file
            .as_ref()
            .context(error::MissingTempFileSnafu {})?;

        Ok(write_path.as_ref())
    }