[msl-out] make EntryPointError cloneable

This commit is contained in:
Dzmitry Malyshau
2021-03-30 09:38:57 -04:00
committed by Dzmitry Malyshau
parent c41f050312
commit fc7b79ddff

View File

@@ -76,9 +76,9 @@ pub enum Error {
Validation,
}
#[derive(Debug, thiserror::Error)]
#[derive(Clone, Debug, PartialEq, thiserror::Error)]
pub enum EntryPointError {
#[error("bind source for {0:?} is missing from the map")]
#[error("mapping of {0:?} is missing")]
MissingBinding(BindSource),
}