1use crate::{Error, ErrorKind, ErrorType, SliceWriteError, Write};
2use core::mem;
34impl Error for SliceWriteError {
5fn kind(&self) -> ErrorKind {
6match self {
7 SliceWriteError::Full => ErrorKind::WriteZero,
8 }
9 }
10}
1112impl ErrorType for &mut [u8] {
13type Error = SliceWriteError;
14}
1516impl core::fmt::Display for SliceWriteError {
17fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
18write!(f, "{self:?}")
19 }
20}
2122#[cfg(feature = "std")]
23#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
24impl std::error::Error for SliceWriteError {}
2526/// Write is implemented for `&mut [u8]` by copying into the slice, overwriting
27/// its data.
28///
29/// Note that writing updates the slice to point to the yet unwritten part.
30/// The slice will be empty when it has been completely overwritten.
31///
32/// If the number of bytes to be written exceeds the size of the slice, write operations will
33/// return short writes: ultimately, a `SliceWriteError::Full`.
34impl Write for &mut [u8] {
35#[inline]
36fn write(&mut self, buf: &[u8]) -> Result<usize, Self::Error> {
37let amt = core::cmp::min(buf.len(), self.len());
38if !buf.is_empty() && amt == 0 {
39return Err(SliceWriteError::Full);
40 }
41let (a, b) = mem::take(self).split_at_mut(amt);
42 a.copy_from_slice(&buf[..amt]);
43*self = b;
44Ok(amt)
45 }
4647#[inline]
48fn flush(&mut self) -> Result<(), Self::Error> {
49Ok(())
50 }
51}