mstdn.maud.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
The place to express your ❤️ more freely. / あなたの「すき」をもっと自由に書き表すための場所。

Administered by:

Server stats:

341
active users

Hoge {
foo: Arc<Mutex<T>>
bar: Arc<Mutex<U>>
}
を作って Hoge を Send Sync Clone にするより

Hoge {
foo: Mutex<T>
bar: Mutex<U>
}
を作って Arc<Hoge> をぽいぽいした方がいいのでは的なやつ