Constant EMPTY_OPTIONS

Source
pub const EMPTY_OPTIONS: [(&str, String); 0];
Expand description

An empty set of cloud options

ยงExample

use cloud_file::{EMPTY_OPTIONS, CloudFile};
 
let url = "https://raw.githubusercontent.com/fastlmm/bed-sample-files/main/plink_sim_10s_100v_10pmiss.bed";
let cloud_file = CloudFile::new_with_options(url, EMPTY_OPTIONS)?;
assert_eq!(cloud_file.read_file_size().await?, 303);