Trait IframeExtension

Source
pub trait IframeExtension: HasAttributes + Sized {
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 { ... }
}

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

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§