//! Response from a FILE column download request.
/// Bytes and HTTP metadata returned by [`KalamLinkClient::download_file`].
#[derive(Debug, Clone, PartialEq, Eq)]pubstructFileDownload{/// Raw file content.
pubbytes:Vec<u8>,
/// Value of the `Content-Type` response header, when present.
pubcontent_type:Option<String>,
/// Value of the `Content-Disposition` response header, when present.
pubcontent_disposition:Option<String>,
}