pub type Result<T> = Result<T, NotFourError>;
Expand description
A specialized Result
type for pointless operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(NotFourError),
}
pub type Result<T> = Result<T, NotFourError>;
A specialized Result
type for pointless operations.
pub enum Result<T> {
Ok(T),
Err(NotFourError),
}