diff options
Diffstat (limited to 'mingling_core/src/asset/chain.rs')
| -rw-r--r-- | mingling_core/src/asset/chain.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mingling_core/src/asset/chain.rs b/mingling_core/src/asset/chain.rs index c41b716..1b488fe 100644 --- a/mingling_core/src/asset/chain.rs +++ b/mingling_core/src/asset/chain.rs @@ -1,15 +1,10 @@ -use std::fmt::Display; - use crate::ChainProcess; #[doc(hidden)] pub mod error; /// Takes over a type (G: Previous) and converts it to another [AnyOutput](./struct.AnyOutput.html) -pub trait Chain<G> -where - G: Display, -{ +pub trait Chain<G> { /// The previous type in the chain type Previous; |
