pub trait ScriptComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlScriptElement> {
    fn html_async(self, v: Option<bool>) -> Self { ... }
fn char_set(self, v: Option<&str>) -> Self { ... }
fn cross_origin(self, v: Option<&str>) -> Self { ... }
fn defer(self, v: Option<bool>) -> Self { ... }
fn integrity(self, v: Option<&str>) -> Self { ... }
fn no_module(self, v: Option<bool>) -> Self { ... }
fn nonce(self, v: Option<&str>) -> Self { ... }
fn referrer_policy(self, v: Option<ReferrerPolicy>) -> Self { ... }
fn src(self, v: Option<&str>) -> Self { ... }
fn html_type(self, v: Option<&str>) -> Self { ... } }

Provided methods

👎 Deprecated

Implementors