workflow_serializer/result.rs
1/// Alias for the standard library I/O error type.
2pub type IoError = std::io::Error;
3/// Alias for the standard library I/O error kind enumeration.
4pub type IoErrorKind = std::io::ErrorKind;
5/// Alias for a `Result` whose error is a standard library I/O error.
6pub type IoResult<T> = std::io::Result<T>;