pub trait IframeExtension: Sized + HasAttributes {
Show 15 methods // Provided methods fn allow(self, value: impl IntoAttributeValue) -> Self { ... } fn allowfullscreen(self, value: impl IntoAttributeValue) -> Self { ... } fn allowpaymentrequest(self, value: impl IntoAttributeValue) -> Self { ... } fn height(self, value: impl IntoAttributeValue) -> Self { ... } fn name(self, value: impl IntoAttributeValue) -> Self { ... } fn referrerpolicy(self, value: impl IntoAttributeValue) -> Self { ... } fn src(self, value: impl IntoAttributeValue) -> Self { ... } fn srcdoc(self, value: impl IntoAttributeValue) -> Self { ... } fn width(self, value: impl IntoAttributeValue) -> Self { ... } fn margin_width(self, value: impl IntoAttributeValue) -> Self { ... } fn align(self, value: impl IntoAttributeValue) -> Self { ... } fn longdesc(self, value: impl IntoAttributeValue) -> Self { ... } fn scrolling(self, value: impl IntoAttributeValue) -> Self { ... } fn margin_height(self, value: impl IntoAttributeValue) -> Self { ... } fn frame_border(self, value: impl IntoAttributeValue) -> Self { ... }
}
Available on crate feature html only.

Provided Methods§

source

fn allow(self, value: impl IntoAttributeValue) -> Self

source

fn allowfullscreen(self, value: impl IntoAttributeValue) -> Self

source

fn allowpaymentrequest(self, value: impl IntoAttributeValue) -> Self

source

fn height(self, value: impl IntoAttributeValue) -> Self

source

fn name(self, value: impl IntoAttributeValue) -> Self

source

fn referrerpolicy(self, value: impl IntoAttributeValue) -> Self

source

fn src(self, value: impl IntoAttributeValue) -> Self

source

fn srcdoc(self, value: impl IntoAttributeValue) -> Self

source

fn width(self, value: impl IntoAttributeValue) -> Self

source

fn margin_width(self, value: impl IntoAttributeValue) -> Self

source

fn align(self, value: impl IntoAttributeValue) -> Self

source

fn longdesc(self, value: impl IntoAttributeValue) -> Self

source

fn scrolling(self, value: impl IntoAttributeValue) -> Self

source

fn margin_height(self, value: impl IntoAttributeValue) -> Self

source

fn frame_border(self, value: impl IntoAttributeValue) -> Self

Object Safety§

This trait is not object safe.

Implementors§