use super::{Decode, Encode}; use crate::coding::VarInt; use async_trait::async_trait; use tokio::io::{AsyncRead, AsyncWrite}; use std::time::Duration; #[async_trait] impl Encode for Duration { async fn encode(&self, w: &mut W) -> anyhow::Result<()> { let ms = self.as_millis(); let ms = VarInt::try_from(ms)?; ms.encode(w).await } } #[async_trait] impl Decode for Duration { async fn decode(r: &mut R) -> anyhow::Result { let ms = VarInt::decode(r).await?; Ok(Self::from_millis(ms.into())) } }