Derive Clone for LoadingError

This commit is contained in:
Jan Bujak 2019-04-28 00:37:58 +02:00
parent 07fd87b95f
commit d7c412bca5

View file

@ -39,7 +39,7 @@ pub struct EntryCustom<L> {
lib: L, lib: L,
} }
#[derive(Debug)] #[derive(Clone, Debug)]
pub enum LoadingError { pub enum LoadingError {
LibraryLoadError(String), LibraryLoadError(String),
} }