[][src]Type Definition color_eyre::Result

type Result<T, E = Report> = Result<T, E>;

A type alias for Result<T, color_eyre::Report>

Example

 #[tracing::instrument]
 fn main() -> color_eyre::Result<()> {

     // ...

     Ok(())
 }