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

database.rs 278B

123456789101112131415
  1. pub struct Database {
  2. // TODO
  3. }
  4. impl Database {
  5. pub fn create_or_open(_path: &str) -> Result<Database, crate::Error> {
  6. // TODO
  7. Ok(Database {})
  8. }
  9. pub fn synchronized_directories(&self) -> Vec<String> {
  10. // TODO
  11. Vec::new()
  12. }
  13. }