pub trait WrapTemplateProperty<'a, O>: Sized {
// Required method
fn wrap_property(property: BoxedTemplateProperty<'a, O>) -> Self;
}Expand description
Wraps template property of type O in tagged type.
This is basically From<BoxedTemplateProperty<'a, O>>, but is restricted
to property types.
Required Methods§
fn wrap_property(property: BoxedTemplateProperty<'a, O>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".