Skip to main content

SetRangeAt

Trait SetRangeAt 

Source
pub trait SetRangeAt<T, const N: usize, const NS: usize>
where T: Copy,
{ // Required method fn set_range_at<const S: usize>(&mut self, source: [T; NS]) -> &mut Self; }

Required Methods§

Source

fn set_range_at<const S: usize>(&mut self, source: [T; NS]) -> &mut Self

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementations on Foreign Types§

Source§

impl<T, const N: usize, const NS: usize> SetRangeAt<T, N, NS> for [T; N]
where T: Copy,

Source§

fn set_range_at<const S: usize>(&mut self, source: [T; NS]) -> &mut Self

Implementors§