Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upDo not use IoRead or IoError in public API #163
Closed
Milestone
Comments
|
Same thing for IoError. pub enum ErrorKind {
IoError(IoError),
InvalidEncoding {
desc: &'static str,
detail: Option<String>,
},
SizeLimit,
SequenceMustHaveLength,
Custom(String),
} |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The rustdoc for BincodeRead currently looks like:
IoRead is a renamed import that you use internally. Since this is user-facing, it should use the standard names for std types.