let hoge = {
let mut hoge = Hoge::new();
...
hoge
};
と
let mut hoge = Hoge::new();
...
let hoge = hoge;
のどっちが見やすいか #どうでも良い
You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history. Learn more
let hoge = {
let mut hoge = Hoge::new();
...
hoge
};
と
let mut hoge = Hoge::new();
...
let hoge = hoge;
のどっちが見やすいか #どうでも良い