Trait query_interface::ObjectClone [] [src]

pub trait ObjectClone {
    fn obj_clone(&self) -> Box<Object>;
}

This is an object-safe version of Clone, which is automatically implemented for all Clone + Object types. This is a support trait used to allow Object trait objects to be clonable.

Required Methods

Implementors