derive {Copy, Eq, Hash} for LocalResult.
This commit is contained in:
parent
bcdc66a4f8
commit
d3dc9c0e10
|
@ -26,7 +26,7 @@ use Weekday;
|
||||||
use {Date, DateTime};
|
use {Date, DateTime};
|
||||||
|
|
||||||
/// The conversion result from the local time to the timezone-aware datetime types.
|
/// The conversion result from the local time to the timezone-aware datetime types.
|
||||||
#[derive(Clone, PartialEq, Debug)]
|
#[derive(Clone, PartialEq, Debug, Copy, Eq, Hash)]
|
||||||
pub enum LocalResult<T> {
|
pub enum LocalResult<T> {
|
||||||
/// Given local time representation is invalid.
|
/// Given local time representation is invalid.
|
||||||
/// This can occur when, for example, the positive timezone transition.
|
/// This can occur when, for example, the positive timezone transition.
|
||||||
|
|
Loading…
Reference in New Issue