pub trait SliceMutOperatorExpand<E>where
E: CubePrimitive,{
// Required methods
fn __expand_slice_mut_method(
&self,
scope: &mut Scope,
start: <usize as CubeType>::ExpandType,
end: <usize as CubeType>::ExpandType,
) -> <Slice<E, ReadWrite> as CubeType>::ExpandType ⓘ;
fn __expand_to_slice_mut_method(
&self,
scope: &mut Scope,
) -> <Slice<E, ReadWrite> as CubeType>::ExpandType ⓘ;
}Required Methods§
fn __expand_slice_mut_method( &self, scope: &mut Scope, start: <usize as CubeType>::ExpandType, end: <usize as CubeType>::ExpandType, ) -> <Slice<E, ReadWrite> as CubeType>::ExpandType ⓘ
fn __expand_to_slice_mut_method( &self, scope: &mut Scope, ) -> <Slice<E, ReadWrite> as CubeType>::ExpandType ⓘ
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".