Trait libimagutil::info_result::InfoResult [] [src]

pub trait InfoResult<T, E>: Sized {
    fn map_info<F: FnOnce(&T) -> String>(self, f: F) -> Self;
fn map_info_err<F: FnOnce(&E) -> String>(self, f: F) -> Self; fn map_info_str(self, s: &str) -> Self { ... }
fn map_info_err_str(self, s: &str) -> Self { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

impl<T, E> InfoResult<T, E> for Result<T, E>
[src]

[src]

[src]

[src]

[src]

Implementors