nw_sys/
result.rs

1//!
2//! [`Result`] type used by [`nw_sys`](super) crate encapsulating
3//! internal [`Error`](super::error::Error) enum.
4//!
5
6pub type Result<T> = std::result::Result<T, crate::error::Error>;