summaryrefslogtreecommitdiffstats
path: root/vendor/yoke/src/either.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/yoke/src/either.rs')
-rw-r--r--vendor/yoke/src/either.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/yoke/src/either.rs b/vendor/yoke/src/either.rs
index 3706177a2..6cddd61d7 100644
--- a/vendor/yoke/src/either.rs
+++ b/vendor/yoke/src/either.rs
@@ -46,7 +46,7 @@ use stable_deref_trait::StableDeref;
/// let y5 = y4.clone();
/// assert_eq!(*y5.get(), "borrowed hello world");
/// ```
-#[derive(Clone, PartialEq, Eq)]
+#[derive(Clone, PartialEq, Eq, Debug)]
#[allow(clippy::exhaustive_enums)] // stable
pub enum EitherCart<C0, C1> {
A(C0),