pub trait MicaResultExt<T, E> {
    fn mica(self) -> Result<T, Error>;
}
Expand description

Extensions for converting Results into a Mica FFI-friendly structure.

Required Methods

Maps the error in the result to an Error.

Implementations on Foreign Types

Implementors