chore: Move use for TryInto to top

This commit is contained in:
Kyle Bloom 2023-01-31 13:59:45 +00:00 committed by Marli Frost
parent c2adaf7ee0
commit ab2800b4d8

View file

@ -1,6 +1,6 @@
//! Types that specify what is contained in a ZIP.
#[cfg(feature = "time")]
use std::convert::TryFrom;
use std::convert::{TryFrom, TryInto};
#[cfg(not(any(
all(target_arch = "arm", target_pointer_width = "32"),
target_arch = "mips",
@ -173,8 +173,6 @@ impl DateTime {
#[allow(clippy::result_unit_err)]
#[deprecated(note = "use `DateTime::try_from()`")]
pub fn from_time(dt: OffsetDateTime) -> Result<DateTime, ()> {
use std::convert::TryInto;
dt.try_into().map_err(|_err| ())
}