(&self, out: &mut [T])
| 709 | |
| 710 | #[inline] |
| 711 | pub fn copy_to_slice(&self, out: &mut [T]) -> Option<usize> |
| 712 | where |
| 713 | T: Copy, |
| 714 | { |
| 715 | self.write_flat(out) |
| 716 | } |
| 717 | |
| 718 | #[inline] |
| 719 | pub fn copy_from(&mut self, src: &Self) -> &mut Self |
nothing calls this directly
no test coverage detected