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