Trait IntoAnyAttribute

pub trait IntoAnyAttribute {
    // Required method
    fn into_any_attr(self) -> AnyAttribute;
}
Expand description

Converts an [Attribute] into [AnyAttribute].

Required Methods§

fn into_any_attr(self) -> AnyAttribute

Wraps the given attribute.

Implementors§

§

impl<T> IntoAnyAttribute for T
where T: Send + Attribute, Element: Clone,