pub trait AnyPropertyAttribute:
Sealed
+ Any
+ Send
+ Sync {
// Required methods
fn as_any(&self) -> &dyn Any;
fn clone_boxed(&self) -> Box<dyn AnyPropertyAttribute>;
}Expand description
Represents any PropertyAttribute<I>.
Required Methods§
Sourcefn clone_boxed(&self) -> Box<dyn AnyPropertyAttribute>
fn clone_boxed(&self) -> Box<dyn AnyPropertyAttribute>
Clone the attribute action into a new box.