Function object_store::parse_url_opts

source ยท
pub fn parse_url_opts<I, K, V>(
    url: &Url,
    options: I
) -> Result<(Box<dyn ObjectStore>, Path), Error>
where I: IntoIterator<Item = (K, V)>, K: AsRef<str>, V: Into<String>,
Expand description

Create an ObjectStore based on the provided url and options

Returns