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