From 52c828c5c9e5d92d46c6440b8ee909dabba1049d Mon Sep 17 00:00:00 2001 From: Nils Hasenbanck Date: Fri, 20 Aug 2021 11:14:51 +0200 Subject: [PATCH] Add missing standard derives for AnimationError. --- raui-core/src/animator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/raui-core/src/animator.rs b/raui-core/src/animator.rs index 96db0f89..9b59ad4a 100644 --- a/raui-core/src/animator.rs +++ b/raui-core/src/animator.rs @@ -12,6 +12,7 @@ use serde::{Deserialize, Serialize}; use std::{collections::HashMap, sync::mpsc::Sender}; /// An error that may occur when animating a value +#[derive(Debug, Clone)] pub enum AnimationError { /// Could not read animation data CouldNotReadData,