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