AnyPropertyAttribute

Trait AnyPropertyAttribute 

Source
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§

Source

fn as_any(&self) -> &dyn Any

As any.

Source

fn clone_boxed(&self) -> Box<dyn AnyPropertyAttribute>

Clone the attribute action into a new box.

Trait Implementations§

Source§

impl Clone for Box<dyn AnyPropertyAttribute>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§