Fix doc
This commit is contained in:
parent
4a66b17bd0
commit
a88ee8f719
|
@ -978,7 +978,7 @@ pub mod serde {
|
||||||
write!(formatter, "a unix timestamp in seconds")
|
write!(formatter, "a unix timestamp in seconds")
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Deserialize a timestamp in seconds since the epoch
|
/// Deserialize a timestamp in nanoseconds since the epoch
|
||||||
fn visit_i64<E>(self, value: i64) -> Result<DateTime<Utc>, E>
|
fn visit_i64<E>(self, value: i64) -> Result<DateTime<Utc>, E>
|
||||||
where E: de::Error
|
where E: de::Error
|
||||||
{
|
{
|
||||||
|
@ -987,7 +987,7 @@ pub mod serde {
|
||||||
&value)
|
&value)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Deserialize a timestamp in seconds since the epoch
|
/// Deserialize a timestamp in nanoseconds since the epoch
|
||||||
fn visit_u64<E>(self, value: u64) -> Result<DateTime<Utc>, E>
|
fn visit_u64<E>(self, value: u64) -> Result<DateTime<Utc>, E>
|
||||||
where E: de::Error
|
where E: de::Error
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue