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