1
Fork 0

Document using sync_all

This commit is contained in:
Chris Gregory 2019-04-01 22:34:57 -04:00
parent f48a5dcf8f
commit b6ebe1bd9e

View file

@ -21,10 +21,9 @@ use crate::time::SystemTime;
/// it was opened with. Files also implement [`Seek`] to alter the logical cursor
/// that the file contains internally.
///
/// Files are automatically closed when they go out of scope. All errors are
/// ignored due to complications with correctly handling them. For instance, an
/// error in closing a file could mean that closing failed, or that the file had
/// an error before closing that was only unearthed by closing the file.
/// Files are automatically closed when they go out of scope. Errors detected
/// on closing are ignored by the implementation of `Drop`. Use the method
/// `sync_all` if these errors must be manually handled.
///
/// # Examples
///