This crate provides an attribute macro to implement Fn
traits for any struct/enum,
essentially enabling you to use it as a regular function/pass it like a closure or use it like an overloaded function.
~~(Please don't use this in any real-world project)~~
If the fact that you have to enable unstable features still doesn't convince you, here's why you should stay away from this (or any other simillar patterns) in any real project: - It introduces ambiguity - What does this code do? Where do I find the implementation? Why am I calling a struct? - It promotes rust anti-patterns - Rust doesn't allow you to, for example, overload functions in classical sense for a reason. You shouldn't try to do it.
If you're still positive about using this in your project - I'm trurly sorry. And I hope you won't try to implement this in the real-world.
Any more reasons not to use this are welcome.
```rust
use functionate::functionate;
struct MyFunc { state: i32, }
impl MyFunc { fn get_state(&self) -> i32 { self.state }
fn update(&mut self, new: i32) {
self.state += new;
}
}
fn main() {
let mut myfunc = MyFunc { state: 5 };
println!("{}", myfunc()); // 5
myfunc(3);
println!("{}", myfunc()); // 8
myfunc(-8);
println!("{}", myfunc()); // 0
}
``
Firstly, we need to enable both
unboxedclosuresand
fntraitsfeatures.
Once we have those, we can use
#[functionate]on an
implblock with methods (it's important for all the methods to have
self,
&mut selfor
&self` argument).
Generics are only supported on impl
level so if you try to make a method generic expect stuff to break.
Async methods are not supported at all (yet).