Trait write_only::PutFromSliceAt[][src]

pub trait PutFromSliceAt<T>: PutAt<T> {
    fn put_cloning_from_slice_at(&mut self, src: &[T], offset: usize)
    where
        T: Clone
; }
Expand description

A trait for objects which provide dropping indexed write access to their values from a slice.

Required methods

Clones the elements from src into self, starting at offset, dropping the old values.

The length of src must be less than self.len - offset.

Panics

This function will panic if the length of src is greater than self.len - offset.

Implementors