We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b29f6d commit a520454Copy full SHA for a520454
2 files changed
src/types.rs src/error.rssrc/types.rs renamed to src/error.rs
src/lib.rs
@@ -158,13 +158,13 @@
158
//! assert_eq!(bar_dec, bar);
159
//! # Ok::<(), Box<dyn std::error::Error>>(())
160
//! ```
161
-pub mod types;
+pub mod error;
162
use std::{
163
any::type_name,
164
net::{Ipv4Addr, Ipv6Addr},
165
};
166
167
-pub use crate::types::{EncodingError, EncodingErrorKind};
+pub use crate::error::{EncodingError, EncodingErrorKind};
168
169
/// indicates a variable width unsigned integer fits in u16
170
pub const U16_SIGNIFIER: u8 = 0xfd;
0 commit comments