pub trait RudaIndexMutExpand: RudaIndexExpand {
// Required method
fn expand_index_mut(
self,
scope: &mut Scope,
index: <Self as RudaIndexExpand>::Idx,
value: <Self as RudaIndexExpand>::Output,
);
}Required Methods§
fn expand_index_mut( self, scope: &mut Scope, index: <Self as RudaIndexExpand>::Idx, value: <Self as RudaIndexExpand>::Output, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".