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.
```rust,nightly
extern crate bind_it;
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}") ```
rustc 1.61.0-nightly (c5cf08d37 2022-03-30)
rust,nightly
bind_it! {
let _: impl std::fmt::Display = if rand::random() > 0.5 {
"qwe"
} else {
5u8
};
};
Despite of that fact that both &str
and u8
implement Display
trait, we need to determine ONE concrete type in the compile time.