pub type BodyResult = Result<u64, String>;
Result of reading a body
pub enum BodyResult { Ok(u64), Err(String), }
Contains the success value
Contains the error value