pub trait IntoOptions<'a> {
// Required method
fn into_options(self) -> Result<Options<'a>, Error>;
}Expand description
A trait implemented by types that can be converted into Options
Required Methods§
Sourcefn into_options(self) -> Result<Options<'a>, Error>
fn into_options(self) -> Result<Options<'a>, Error>
Try to convert self into an Options structure