From 6120d829245a3fb672d79c45f1860c06047921ec Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 26 Dec 2021 00:36:33 +0800 Subject: [PATCH] cargo fmt --- src/entity/base_entity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entity/base_entity.rs b/src/entity/base_entity.rs index f57683e4e..8d27b1c8e 100644 --- a/src/entity/base_entity.rs +++ b/src/entity/base_entity.rs @@ -4,8 +4,8 @@ use crate::{ RelationTrait, RelationType, Select, Update, UpdateMany, UpdateOne, }; use sea_query::{Alias, Iden, IntoIden, IntoTableRef, IntoValueTuple, TableRef}; -pub use strum::IntoEnumIterator as Iterable; use std::fmt::Debug; +pub use strum::IntoEnumIterator as Iterable; /// Ensure the identifier for an Entity can be converted to a static str pub trait IdenStatic: Iden + Copy + Debug + 'static {