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