sycamore::web::tags

Trait HtmlImgAttributes

pub trait HtmlImgAttributes: Sized + SetAttribute {
    // Provided methods
    fn alt(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self { ... }
    fn crossorigin(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn decoding(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn height(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn ismap(self, value: impl Into<MaybeDyn<bool>>) -> Self { ... }
    fn loading(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn referrerpolicy(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn sizes(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn src(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self { ... }
    fn srcset(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn usemap(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
    fn width(
        self,
        value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>,
    ) -> Self { ... }
}
Expand description

Trait that provides attributes for the <img> HTML element.

Provided Methods§

fn alt(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn crossorigin( self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>, ) -> Self

fn decoding(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn height(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn ismap(self, value: impl Into<MaybeDyn<bool>>) -> Self

fn loading(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn referrerpolicy( self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>, ) -> Self

fn sizes(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn src(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn srcset(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn usemap(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

fn width(self, value: impl Into<MaybeDyn<Option<Cow<'static, str>>>>) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§