From d40b6ad2ed8fe08352fd2365ae4b43fc486eb968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 28 Mar 2023 12:23:56 +0200 Subject: [PATCH] Remove `Copy` implementation for `TextArea` --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d0e214b..85b232f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -96,7 +96,7 @@ impl Default for TextBounds { } /// A text area containing text to be rendered along with its overflow behavior. -#[derive(Clone, Copy)] +#[derive(Clone)] pub struct TextArea<'a> { /// The buffer containing the text to be rendered. pub buffer: &'a Buffer,