pub type Result = Result<(), String>;
The result type alias, used in build methods. Err contains formatted error message.
Err
enum Result { Ok(()), Err(String), }
Contains the success value
Contains the error value