#[derive(Default)]
pub struct DownloadOptions {
pub(crate) content_disposition: Option<String>,
}
impl DownloadOptions {
pub fn new() -> Self {
Self::default()
}
pub fn content_disposition(mut self, content_disposition: &str) -> Self {
self.content_disposition = Some(content_disposition.to_string());
self
}
}