pub type CopyBufferResult = Result<(), CopyError<usize, usize>>;
Result type returned when copying a buffer into another buffer.
pub enum CopyBufferResult { Ok(()), Err(CopyError<usize, usize>), }
Contains the success value
Contains the error value