pub trait RudaBlockPrefixExpand<T: RudaType> {
// Required method
fn __expand_prefix_method(
self,
scope: &mut Scope,
aggregate: <T as RudaType>::ExpandType,
) -> <T as RudaType>::ExpandType;
}Required Methods§
fn __expand_prefix_method( self, scope: &mut Scope, aggregate: <T as RudaType>::ExpandType, ) -> <T as RudaType>::ExpandType
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".