pub trait LinkComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlLinkElement> {
    fn html_as(self, v: Option<&str>) -> Self { ... }
fn cross_origin(self, v: Option<&str>) -> Self { ... }
fn href(self, v: Option<&str>) -> Self { ... }
fn href_lang(self, v: Option<&str>) -> Self { ... }
fn integrity(self, v: Option<&str>) -> Self { ... }
fn media(self, v: Option<&str>) -> Self { ... }
fn referrer_policy(self, v: Option<ReferrerPolicy>) -> Self { ... }
fn rel(self, v: Option<&str>) -> Self { ... }
fn sizes(self, v: Option<&str>) -> Self { ... }
fn html_type(self, v: Option<&str>) -> Self { ... }
fn char_set(self, v: Option<&str>) -> Self { ... } }

Provided methods

Implementors