What if we have auto type setter in db in rust

hi everyone
today im thinking what if we have auto setter in db in rust
tell some idea about it

Can you please explain what you mean by "auto setter in db"?

auto type

What do you mean by db?
let without a type hint is basically analog to C++'s auto.

Or do you mean something like

fn foo() -> _ {
    32u8
}

?
I would not see any benefit here, since I prefer explicit signatures.

2 Likes