two-way file system sync
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

online_test.rs 206B

123456789101112
  1. trait OnlineTest {
  2. // TODO
  3. }
  4. /// Tests whether the system is online by connecting the specified address.
  5. struct GenericOnlineTest {
  6. // TODO
  7. }
  8. impl OnlineTest for GenericOnlineTest {
  9. // TODO
  10. }