usestd::io;/// Creates an error with internal io::Error of the InvalidInput kind.
pub(crate)fninvalid_input(reason:&'staticstr)->io::Error{io::Error::new(io::ErrorKind::InvalidInput, reason)}/// Creates an error with internal io::Error of the Other kind.
pub(crate)fnother(reason:&'staticstr)->io::Error{io::Error::new(io::ErrorKind::Other, reason)}