We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31122bc commit e3809d7Copy full SHA for e3809d7
Modules/Network/src/Error.rs
@@ -0,0 +1,4 @@
1
+pub type Result_type<T> = Result<T, Error_type>;
2
+
3
+#[derive(Debug, Copy, Clone)]
4
+pub enum Error_type {}
Modules/Network/src/Protocol.rs
@@ -0,0 +1,6 @@
+pub enum Protocol_type {
+ TCP,
+ UDP,
+ ICMP,
5
+ Local,
6
+}
Modules/Network/src/lib.rs
@@ -1,3 +1,6 @@
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
+mod Error;
+mod Protocol;
0 commit comments