llianc62
Results
2
comments of
llianc62
I'm also frustrated with `c.Error`. It against gonlangci-lint. Is possible to erase return *Error ? What I am using now is that set my own key "error" for each error...
Like this : ```rust let x = String::from("hello"); let consume_x = move || { println!("{}", x); }; consume_x(); // closure take the ownership // consume_x(); // can not execute because...