1#[doc(inline)] 2pub use auto_error_into_macro::auto_error_into; 3 4#[doc(hidden)] 5pub mod __ { 6 pub trait ResultResolver { 7 type Ok; 8 type Err; 9 } 10 11 impl<T, E> ResultResolver for Result<T, E> { 12 type Ok = T; 13 type Err = E; 14 } 15}