scatter_net/legacy/
error_code.rs1#[repr(u8)]
2#[derive(Clone, Copy, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
3pub enum ErrorCode {
4 Success = 0,
5 Failure = 1,
6
7 #[default]
8 Unknown = 2,
9
10 PeerDropped = 16,
12 PingPongFailed = 17,
13}