pub trait OptionsTrait {
    fn new() -> Self
    where
        Self: JsCast
, { ... } fn initialize(self) -> Self
    where
        Self: JsCast
, { ... } fn set(self, key: &str, value: JsValue) -> Self
    where
        Self: JsCast
, { ... } }

Provided Methods§

“Construct a new Options.

Implementors§