pub type Result = Result<(), Error>;
The result of running an iced program.
pub enum Result { Ok(()), Err(Error), }
Contains the success value
Contains the error value