Link to sync_all

This commit is contained in:
Chris Gregory 2019-04-02 22:26:11 -04:00
parent b6ebe1bd9e
commit 76e82d6f52

View file

@ -23,7 +23,7 @@ use crate::time::SystemTime;
/// ///
/// Files are automatically closed when they go out of scope. Errors detected /// Files are automatically closed when they go out of scope. Errors detected
/// on closing are ignored by the implementation of `Drop`. Use the method /// on closing are ignored by the implementation of `Drop`. Use the method
/// `sync_all` if these errors must be manually handled. /// [`sync_all`] if these errors must be manually handled.
/// ///
/// # Examples /// # Examples
/// ///
@ -86,6 +86,7 @@ use crate::time::SystemTime;
/// [`Read`]: ../io/trait.Read.html /// [`Read`]: ../io/trait.Read.html
/// [`Write`]: ../io/trait.Write.html /// [`Write`]: ../io/trait.Write.html
/// [`BufReader<R>`]: ../io/struct.BufReader.html /// [`BufReader<R>`]: ../io/struct.BufReader.html
/// [`sync_all`]: struct.File.html#method.sync_all
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub struct File { pub struct File {
inner: fs_imp::File, inner: fs_imp::File,