Skip to main content

SliceOperatorExpand

Trait SliceOperatorExpand 

Source
pub trait SliceOperatorExpand<E: RudaPrimitive> {
    // Required methods
    fn __expand_slice_method(
        &self,
        scope: &mut Scope,
        start: <usize as RudaType>::ExpandType,
        end: <usize as RudaType>::ExpandType,
    ) -> <Slice<E, ReadOnly> as RudaType>::ExpandType ⓘ;
    fn __expand_to_slice_method(
        &self,
        scope: &mut Scope,
    ) -> <Slice<E, ReadOnly> as RudaType>::ExpandType ⓘ;
}

Required Methods§

Source

fn __expand_slice_method( &self, scope: &mut Scope, start: <usize as RudaType>::ExpandType, end: <usize as RudaType>::ExpandType, ) -> <Slice<E, ReadOnly> as RudaType>::ExpandType ⓘ

Source

fn __expand_to_slice_method( &self, scope: &mut Scope, ) -> <Slice<E, ReadOnly> as RudaType>::ExpandType ⓘ

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§