diff --git a/src/entity/active_enum.rs b/src/entity/active_enum.rs index 68c58c64..7e17000f 100644 --- a/src/entity/active_enum.rs +++ b/src/entity/active_enum.rs @@ -1,9 +1,8 @@ use crate::{ColumnDef, DbErr, TryGetable}; use sea_query::{Nullable, Value, ValueType}; -use std::fmt::Debug; pub trait ActiveEnum: Sized { - type Value: Sized + Send + Debug + PartialEq + Into + ValueType + Nullable + TryGetable; + type Value: Into + ValueType + Nullable + TryGetable; fn to_value(&self) -> Self::Value;