| 27 | |
| 28 | #[derive(Eq, PartialEq, Clone, Copy)] |
| 29 | pub enum DestinationNetwork { |
| 30 | /// Mainnet Ethereum. |
| 31 | Ethereum, |
| 32 | /// Ethereum's testnet network. |
| 33 | EthereumSepolia, |
| 34 | /// Locally hosted network. |
| 35 | Local, |
| 36 | } |
| 37 | |
| 38 | impl fmt::Display for DestinationNetwork { |
| 39 | fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected