easy-ext 0.1.5

An attribute macro for easily writing extension trait pattern.
Documentation
# easy-ext

[![Build Status][azure-badge]][azure-url]
[![Crates.io][crates-version-badge]][crates-url]
[![Docs.rs][docs-badge]][docs-url]
[![License][crates-license-badge]][crates-url]
[![Minimum supported Rust version][rustc-badge]][rustc-url]

[azure-badge]: https://dev.azure.com/taiki-e/taiki-e/_apis/build/status/taiki-e.easy-ext?branchName=master
[azure-url]: https://dev.azure.com/taiki-e/taiki-e/_build/latest?definitionId=6&branchName=master
[crates-version-badge]: https://img.shields.io/crates/v/easy-ext.svg
[crates-license-badge]: https://img.shields.io/crates/l/easy-ext.svg
[crates-badge]: https://img.shields.io/crates/v/easy-ext.svg
[crates-url]: https://crates.io/crates/easy-ext/
[docs-badge]: https://docs.rs/easy-ext/badge.svg
[docs-url]: https://docs.rs/easy-ext/
[rustc-badge]: https://img.shields.io/badge/rustc-1.31+-lightgray.svg
[rustc-url]: https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html

An attribute macro for easily writing [extension trait pattern](https://github.com/rust-lang/rfcs/blob/master/text/0445-extension-trait-conventions.md).

[**Documentation**](https://docs.rs/easy-ext/)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
easy-ext = "0.1"
```

The current easy-ext requires Rust 1.31 or later.

## Examples

```rust
use easy_ext::ext;

#[ext(ResultExt)]
impl<T, E> Result<T, E> {
    fn err_into<U>(self) -> Result<T, U>
    where
        E: Into<U>,
    {
        self.map_err(Into::into)
    }
}
```

Code like this will be generated:

```rust
trait ResultExt<T, E> {
    fn err_into<U>(self) -> Result<T, U>
    where
        E: Into<U>;
}

impl<T, E> ResultExt<T, E> for Result<T, E> {
    fn err_into<U>(self) -> Result<T, U>
    where
        E: Into<U>,
    {
        self.map_err(Into::into)
    }
}
```

### Supported items

* [Methods]https://doc.rust-lang.org/book/ch05-03-method-syntax.html

* [Associated constants]https://rust-lang-nursery.github.io/edition-guide/rust-2018/trait-system/associated-constants.html

## License

Licensed under either of

* Apache License, Version 2.0, ([LICENSE-APACHE]LICENSE-APACHE or <http://www.apache.org/licenses/LICENSE-2.0>)
* MIT license ([LICENSE-MIT]LICENSE-MIT or <http://opensource.org/licenses/MIT>)

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.