pub type SmallResult = Result<(), SmallError>;
pub enum SmallResult { Ok(()), Err(SmallError), }
Contains the success value
Contains the error value