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. }