Update fixed.rs

This commit is contained in:
寧靜 2018-06-19 08:42:37 +08:00 committed by luozijun
parent 7baafafc0c
commit a99dee655e
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ use super::{TimeZone, Offset, LocalResult};
/// on a `FixedOffset` struct is the preferred way to construct
/// `DateTime<FixedOffset>` instances. See the [`east`](#method.east) and
/// [`west`](#method.west) methods for examples.
#[derive(Copy, Clone, PartialEq, Eq)]
#[derive(PartialEq, Eq, Hash, Copy, Clone)]
pub struct FixedOffset {
local_minus_utc: i32,
}