1
2
3
4
5
6
7
8
//! This library's [`Error`] and [`Result`] type.

/// There is but one – failure 🤪.
#[derive(Debug)]
pub struct Error;

/// [`Error`] or success.
pub type Result<T> = core::result::Result<T, Error>;