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