jupyter_client/
errors.rs

1use failure::Error;
2
3/** Wrapped result type for this crate.
4
5This is just a `failure::Error` error type, with generic `Ok` type.
6*/
7pub type Result<T> = ::std::result::Result<T, Error>;