Remove impl Copy on Buffer

This commit is contained in:
David Tolnay 2021-12-12 00:31:45 -08:00
parent 4f958fd42f
commit ef7c22a081
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ use core::{ptr, slice, str};
/// let printed = buffer.format(1234);
/// assert_eq!(printed, "1234");
/// ```
#[derive(Copy)]
pub struct Buffer {
bytes: [MaybeUninit<u8>; I128_MAX_LEN],
}