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§

source

fn new() -> Selfwhere
    Self: JsCast,

“Construct a new Options.

source

fn initialize(self) -> Selfwhere
    Self: JsCast,

source

fn set(self, key: &str, value: JsValue) -> Selfwhere
    Self: JsCast,

Implementors§