Description

A macro that allows using impl trait types in bindings. Currently supported statements: let, const (with some limitations mentioned below), static. This crate will be replaced by impltraitin_bindings feature in future, but there is still a long way to stabilize it.

Example

```rust,nightly

![feature(typealiasimpl_trait)]

[macro_use]

extern crate bind_it;

fn main() { bind_it!( let x: std::fmt::Display = true; );

// fails, even x variable is initialized with a boolean, its type is hidden behind `Display` trait,
// and the only thing that we can do - display x
assert!(x);

// works
println!("{x}")

} ```

How it works?

Ez!

Minimal compiler version

rustc 1.61.0-nightly (c5cf08d37 2022-03-30) with #![feature(type_alias_impl_trait)] enabled

Limitations