pub trait HandlesVecExtension<T, B>: Sized {
// Required methods
fn to_base(self) -> Vec<Handle<B>>
where T: ObjectOrVariant<B>;
fn to_any(self) -> Vec<Handle<B>>;
}Required Methods§
fn to_base(self) -> Vec<Handle<B>>where
T: ObjectOrVariant<B>,
fn to_any(self) -> Vec<Handle<B>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.