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 { ... }
}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
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.