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