/// Array that returns slices into its contents
pubtraitSliceArray<E> {/// Returns a reference to a slice into this array.
fnas_slice(&self)->&[E];/// Returns a mutable reference to a slice into this array.
fnas_slice_mut(&mutself)->&mut[E];}/// Array reference that can return a slice into its contents.
pubtraitSliceArrayRef<E> {/// Returns a reference to a slice into this array.
fnas_slice(&self)->&[E];/// Returns a mutable reference to a slice into this array.
fnas_slice_mut(&mutself)->Option<&mut[E]>;}