Pre: make ValueTypeSet Copy, as it only newtypes EnumSet, which is Copy.

This commit is contained in:
Richard Newman 2017-06-09 20:13:13 -07:00
parent dbbbd220f9
commit a10c6fc67a

View file

@ -496,7 +496,7 @@ impl<T: CLike + Clone> EnumSetExtensions<T> for EnumSet<T> {
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct ValueTypeSet(pub EnumSet<ValueType>);
impl Default for ValueTypeSet {