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