Make Application and Sandbox return a Result
This commit is contained in:
parent
faa12382d4
commit
c1f79b40cf
40 changed files with 166 additions and 58 deletions
6
src/result.rs
Normal file
6
src/result.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
use crate::Error;
|
||||
|
||||
/// The result of running an [`Application`].
|
||||
///
|
||||
/// [`Application`]: trait.Application.html
|
||||
pub type Result = std::result::Result<(), Error>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue