Diffstat (limited to 'src/build/builders/core/value.rs')
-rw-r--r--src/build/builders/core/value.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/build/builders/core/value.rs b/src/build/builders/core/value.rs
index 55a0e99..feec981 100644
--- a/src/build/builders/core/value.rs
+++ b/src/build/builders/core/value.rs
@@ -1,11 +1,12 @@
use core::fmt::Display;
use effectful::{
+ bound::Dynamic,
bound::IsSync,
effective::Effective,
environment::{DynBind, Environment, NativeForm},
- higher_ranked::Mut, SendSync,
- bound::Dynamic,
+ higher_ranked::Mut,
+ SendSync,
};
use crate::{
@@ -58,9 +59,9 @@ pub struct ValueBuilder<T, Clone, E> {
_marker: Marker<(E, Clone)>,
}
-impl<T, Clone, E: Environment> crate::BuilderTypes<E> for ValueBuilder<T, Clone, E>
+impl<T, Clone, E: Environment> crate::BuilderTypes<E> for ValueBuilder<T, Clone, E>
where
- Dynamic<T>: DynBind<E>
+ Dynamic<T>: DynBind<E>,
{
type Error = ValueError<T>;