derive Copy in StoreErrorKind

This commit is contained in:
Matthias Beyer 2016-01-16 14:12:29 +01:00
parent e7c43c2c9d
commit 0ace28897f
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ use std::convert::From;
use std::io::Error as IOError;
#[derive(Clone)]
#[derive(Clone, Copy)]
pub enum StoreErrorKind {
IdNotFound,
OutOfMemory,