Result Extensions

An extremely simple library that provides extension traits for the standard Rust library's Result<T, E> type.

This library adds "extension functions" to all Sized values to allow them to be moved into Result types: ```rust use result_extensions::ResultExtensions;

fn resultfunction(bool: iserr) -> Result { if iserr { "error!".tostring().toerr() } else { "ok!".tostring().to_ok() } } ```