瀏覽代碼

core API: save_to_file, save_to_writer

awiouy 7 年之前
父節點
當前提交
a105fd44c4
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      core/src/authentication.rs

+ 2 - 2
core/src/authentication.rs

@@ -132,12 +132,12 @@ impl Credentials {
         File::open(path).ok().map(Credentials::from_reader)
     }
 
-    pub fn save_to_writer<W: Write>(&self, writer: &mut W) {
+    fn save_to_writer<W: Write>(&self, writer: &mut W) {
         let contents = serde_json::to_string(&self.clone()).unwrap();
         writer.write_all(contents.as_bytes()).unwrap();
     }
 
-    pub fn save_to_file<P: AsRef<Path>>(&self, path: P) {
+    pub(crate) fn save_to_file<P: AsRef<Path>>(&self, path: P) {
         let mut file = File::create(path).unwrap();
         self.save_to_writer(&mut file)
     }