doc: more beginner-friendly DateTime
give more warnings about possible misuse of the type
This commit is contained in:
parent
afc84af4aa
commit
0eea88d6c0
1 changed files with 38 additions and 9 deletions
45
src/types.rs
45
src/types.rs
|
@ -1,4 +1,9 @@
|
||||||
//! Types that specify what is contained in a ZIP.
|
//! Types that specify what is contained in a ZIP.
|
||||||
|
#[cfg(doc)]
|
||||||
|
use {
|
||||||
|
crate::read::ZipFile,
|
||||||
|
crate::write::FileOptions,
|
||||||
|
};
|
||||||
|
|
||||||
#[cfg(feature = "time")]
|
#[cfg(feature = "time")]
|
||||||
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
|
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
|
||||||
|
@ -22,19 +27,23 @@ impl System {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A DateTime field to be used for storing timestamps in a zip file
|
/// Representation of a moment in time.
|
||||||
///
|
///
|
||||||
/// This structure does bounds checking to ensure the date is able to be stored in a zip file.
|
/// 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!
|
||||||
///
|
///
|
||||||
/// When constructed manually from a date and time, it will also check if the input is sensible
|
/// A [`DateTime`] can be stored directly in a zipfile with [`FileOptions::last_modified_time`],
|
||||||
/// (e.g. months are from [1, 12]), but when read from a zip some parts may be out of their normal
|
/// or read from one with [`ZipFile::last_modified`]
|
||||||
/// bounds (e.g. month 0, or hour 31).
|
|
||||||
///
|
///
|
||||||
/// # Warning
|
/// # Warning
|
||||||
///
|
///
|
||||||
/// Some utilities use alternative timestamps to improve the accuracy of their
|
/// Because there is no timezone associated with the [`DateTime`], they should ideally only
|
||||||
/// ZIPs, but we don't parse them yet. [We're working on this](https://github.com/zip-rs/zip/issues/156#issuecomment-652981904),
|
/// be used for user-facing descriptions. This also means [`DateTime::to_time`] returns an
|
||||||
/// however this API shouldn't be considered complete.
|
/// [`OffsetDateTime`] (which is the equivalent of chrono's `NaiveDateTime`).
|
||||||
|
///
|
||||||
|
/// Modern zip files store more precise timestamps, which are ignored by [`crate::read::ZipArchive`],
|
||||||
|
/// so keep in mind that these timestamps are unreliable. [We're working on this](https://github.com/zip-rs/zip/issues/156#issuecomment-652981904).
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub struct DateTime {
|
pub struct DateTime {
|
||||||
year: u16,
|
year: u16,
|
||||||
|
@ -166,26 +175,46 @@ impl DateTime {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the month, where 1 = january and 12 = december
|
/// 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 {
|
pub fn month(&self) -> u8 {
|
||||||
self.month
|
self.month
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the day
|
/// Get the day
|
||||||
|
///
|
||||||
|
/// # Warning
|
||||||
|
///
|
||||||
|
/// When read from a zip file, this may not be a reasonable value
|
||||||
pub fn day(&self) -> u8 {
|
pub fn day(&self) -> u8 {
|
||||||
self.day
|
self.day
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the hour
|
/// Get the hour
|
||||||
|
///
|
||||||
|
/// # Warning
|
||||||
|
///
|
||||||
|
/// When read from a zip file, this may not be a reasonable value
|
||||||
pub fn hour(&self) -> u8 {
|
pub fn hour(&self) -> u8 {
|
||||||
self.hour
|
self.hour
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the minute
|
/// Get the minute
|
||||||
|
///
|
||||||
|
/// # Warning
|
||||||
|
///
|
||||||
|
/// When read from a zip file, this may not be a reasonable value
|
||||||
pub fn minute(&self) -> u8 {
|
pub fn minute(&self) -> u8 {
|
||||||
self.minute
|
self.minute
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the second
|
/// Get the second
|
||||||
|
///
|
||||||
|
/// # Warning
|
||||||
|
///
|
||||||
|
/// When read from a zip file, this may not be a reasonable value
|
||||||
pub fn second(&self) -> u8 {
|
pub fn second(&self) -> u8 {
|
||||||
self.second
|
self.second
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue