From 0a7184e594d1dc0c00e5d5773f206f50a6c0939a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 2 Jul 2024 15:08:04 +0200 Subject: [PATCH] ui: Implement Clone for RepliedToInfo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- crates/matrix-sdk-ui/src/timeline/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-ui/src/timeline/mod.rs b/crates/matrix-sdk-ui/src/timeline/mod.rs index 3edcdfd4fdf..fd392887b1f 100644 --- a/crates/matrix-sdk-ui/src/timeline/mod.rs +++ b/crates/matrix-sdk-ui/src/timeline/mod.rs @@ -129,7 +129,7 @@ impl EditInfo { } /// Information needed to reply to an event. -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct RepliedToInfo { /// The event ID of the event to reply to. event_id: OwnedEventId,