iced/src/result.rs
2020-09-08 00:44:59 +02:00

6 lines
163 B
Rust

use crate::Error;
/// The result of running an [`Application`].
///
/// [`Application`]: trait.Application.html
pub type Result = std::result::Result<(), Error>;