From b080731c5543043728137cf2f5ac75d538da8ff4 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Sun, 23 Jan 2022 21:53:42 +0000 Subject: [PATCH] chore: rustfmt --- src/lib.rs | 14 +++++++------- src/types.rs | 29 +++++++++++++---------------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8a20d374..24e4377c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,21 +6,21 @@ //! archives. //! //! The current implementation is based on [PKWARE's APPNOTE.TXT v6.3.9](https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT) -//! +//! //! --- -//! +//! //! [`zip`](`crate`) has support for the most common ZIP archives found in common use. //! However, in special cases, //! there are some zip archives that are difficult to read or write. -//! +//! //! This is a list of supported features: -//! +//! //! | | Reading | Writing | //! | ------- | ------ | ------- | //! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) | -//! -//! -//! +//! +//! +//! #![warn(missing_docs)] diff --git a/src/types.rs b/src/types.rs index 523de6a1..e68c934e 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,9 +1,6 @@ //! Types that specify what is contained in a ZIP. #[cfg(doc)] -use { - crate::read::ZipFile, - crate::write::FileOptions, -}; +use {crate::read::ZipFile, crate::write::FileOptions}; #[cfg(feature = "time")] use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time}; @@ -28,7 +25,7 @@ impl System { } /// Representation of a moment in time. -/// +/// /// Zip files use an old format from DOS to store timestamps, /// with its own set of peculiarities. /// For example, it has a resolution of 2 seconds! @@ -37,7 +34,7 @@ impl System { /// or read from one with [`ZipFile::last_modified`] /// /// # Warning -/// +/// /// Because there is no timezone associated with the [`DateTime`], they should ideally only /// be used for user-facing descriptions. This also means [`DateTime::to_time`] returns an /// [`OffsetDateTime`] (which is the equivalent of chrono's `NaiveDateTime`). @@ -175,45 +172,45 @@ impl DateTime { } /// Get the month, where 1 = january and 12 = december - /// + /// /// # Warning - /// + /// /// When read from a zip file, this may not be a reasonable value pub fn month(&self) -> u8 { self.month } /// Get the day - /// + /// /// # Warning - /// + /// /// When read from a zip file, this may not be a reasonable value pub fn day(&self) -> u8 { self.day } /// Get the hour - /// + /// /// # Warning - /// + /// /// When read from a zip file, this may not be a reasonable value pub fn hour(&self) -> u8 { self.hour } /// Get the minute - /// + /// /// # Warning - /// + /// /// When read from a zip file, this may not be a reasonable value pub fn minute(&self) -> u8 { self.minute } /// Get the second - /// + /// /// # Warning - /// + /// /// When read from a zip file, this may not be a reasonable value pub fn second(&self) -> u8 { self.second