1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
# easy-ext
[](https://crates.io/crates/easy-ext)
[](https://docs.rs/easy-ext)
[](#license)
[](https://www.rust-lang.org)
[](https://github.com/taiki-e/easy-ext/actions)
<!-- tidy:crate-doc:start -->
A lightweight attribute macro for easily writing [extension trait pattern][rfc0445].
```toml
[dependencies]
easy-ext = "1"
```
## Examples
```rust
use easy_ext::ext;
#[ext(ResultExt)]
pub 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
pub 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)
}
}
```
You can elide the trait name.
```rust
use easy_ext::ext;
#[ext]
impl<T, E> Result<T, E> {
fn err_into<U>(self) -> Result<T, U>
where
E: Into<U>,
{
self.map_err(Into::into)
}
}
```
Note that in this case, `#[ext]` assigns a random name, so you cannot
import/export the generated trait.
### Visibility
There are two ways to specify visibility.
#### Impl-level visibility
The first way is to specify visibility at the impl level. For example:
```rust
use easy_ext::ext;
// unnamed
#[ext]
pub impl str {
fn foo(&self) {}
}
// named
#[ext(StrExt)]
pub impl str {
fn bar(&self) {}
}
```
#### Associated-item-level visibility
Another way is to specify visibility at the associated item level.
For example, if the method is `pub` then the trait will also be `pub`:
```rust
use easy_ext::ext;
#[ext(ResultExt)] // generate `pub trait ResultExt`
impl<T, E> Result<T, E> {
pub fn err_into<U>(self) -> Result<T, U>
where
E: Into<U>,
{
self.map_err(Into::into)
}
}
```
This is useful when migrate from an inherent impl to an extension trait.
Note that the visibility of all the associated items in the `impl` must be identical.
Note that you cannot specify impl-level visibility and associated-item-level visibility at the same time.
### [Supertraits](https://doc.rust-lang.org/reference/items/traits.html#supertraits)
If you want the extension trait to be a subtrait of another trait,
add `Self: SubTrait` bound to the `where` clause.
```rust
use easy_ext::ext;
#[ext(Ext)]
impl<T> T
where
Self: Default,
{
fn method(&self) {}
}
```
### Supported items
#### [Associated functions (methods)](https://doc.rust-lang.org/reference/items/associated-items.html#associated-functions-and-methods)
```rust
use easy_ext::ext;
#[ext]
impl<T> T {
fn method(&self) {}
}
```
#### [Associated constants](https://doc.rust-lang.org/reference/items/associated-items.html#associated-constants)
```rust
use easy_ext::ext;
#[ext]
impl<T> T {
const MSG: &'static str = "Hello!";
}
```
#### [Associated types](https://doc.rust-lang.org/reference/items/associated-items.html#associated-types)
```rust
use easy_ext::ext;
#[ext]
impl str {
type Owned = String;
fn method(&self) -> Self::Owned {
self.to_owned()
}
}
```
[rfc0445]: https://github.com/rust-lang/rfcs/blob/HEAD/text/0445-extension-trait-conventions.md
<!-- tidy:crate-doc:end -->
## License
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or
[MIT license](LICENSE-MIT) at your option.
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.
|