pub trait ConfigOpts {
// Required method
fn to_options(&self) -> HashMap<String, String>;
}
Expand description
A trait used to convert to the expected Spark Options for readwriters
This sets multiple options at once using a HashMap
pub trait ConfigOpts {
// Required method
fn to_options(&self) -> HashMap<String, String>;
}
A trait used to convert to the expected Spark Options for readwriters
This sets multiple options at once using a HashMap