hydro2_operator/
port_try_into_any.rs

1// ---------------- [ File: src/port_try_into_any.rs ]
2crate::ix!();
3
4pub trait PortTryInto0Any {
5    type Error;
6    fn port_try_into0_any(self) -> Result<unsafe_erased::Erased, Self::Error>;
7}
8
9pub trait PortTryInto1Any {
10    type Error;
11    fn port_try_into1_any(self) -> Result<unsafe_erased::Erased, Self::Error>;
12}
13
14pub trait PortTryInto2Any {
15    type Error;
16    fn port_try_into2_any(self) -> Result<unsafe_erased::Erased, Self::Error>;
17}
18
19pub trait PortTryInto3Any {
20    type Error;
21    fn port_try_into3_any(self) -> Result<unsafe_erased::Erased, Self::Error>;
22}