pub trait MoExtension: Sized + HasAttributes {
    // Provided methods
    fn fence(self, value: impl IntoAttributeValue) -> Self { ... }
    fn largeop(self, value: impl IntoAttributeValue) -> Self { ... }
    fn lspace(self, value: impl IntoAttributeValue) -> Self { ... }
    fn maxsize(self, value: impl IntoAttributeValue) -> Self { ... }
    fn minsize(self, value: impl IntoAttributeValue) -> Self { ... }
    fn movablelimits(self, value: impl IntoAttributeValue) -> Self { ... }
    fn rspace(self, value: impl IntoAttributeValue) -> Self { ... }
    fn separator(self, value: impl IntoAttributeValue) -> Self { ... }
    fn stretchy(self, value: impl IntoAttributeValue) -> Self { ... }
    fn symmetric(self, value: impl IntoAttributeValue) -> Self { ... }
}
Available on crate feature html only.

Provided Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§