diff --git a/src/types/final_data.rs b/src/types/final_data.rs index 253fc1d0..8088916c 100644 --- a/src/types/final_data.rs +++ b/src/types/final_data.rs @@ -12,6 +12,7 @@ //! use crate::dag::{Dag, DagLike, NoSharing}; +use crate::types::{Bound, Type}; use crate::Tmr; use std::sync::Arc; @@ -226,6 +227,12 @@ impl Final { } } +impl From> for Type { + fn from(value: Arc) -> Self { + Type::from(Bound::Complete(value)) + } +} + #[cfg(test)] mod tests { use super::*;