Type Alias iced::Result

source ·
pub type Result = Result<(), Error>;
Expand description

The result of running a Program.

Aliased Type§

enum Result {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value