1 2 3 4 5 6 7 8 9 10
/// All error types produced by a Noise operation. #[derive(Debug)] pub enum NoiseError { InitError(&'static str), PrereqError(String), InputError(&'static str), StateError(&'static str), DecryptError }