Skip to content

Commit

Permalink
Remove impl Copy on Buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 12, 2021
1 parent 4f958fd commit ef7c22a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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],
}
Expand Down

0 comments on commit ef7c22a

Please sign in to comment.