pub fn deserialize_i64<'de, D>(deserializer: D) -> Result<i64, D::Error>where
D: Deserializer<'de>,Expand description
Deserialize a non-optional i64, accepting string, integer, or float JSON
forms. See the module docs for why all three forms must be tolerated.