The API is now synchronous and any quinn stuff has been moved to another package. The quinn stuff will be slowly moved into moq-transport with generic traits.
21 lines
464 B
Rust
21 lines
464 B
Rust
use crate::coding::{Decode, DecodeError, Encode, EncodeError, VarInt};
|
|
|
|
use bytes::{Buf, BufMut};
|
|
|
|
use std::time::Duration;
|
|
|
|
impl Encode for Duration {
|
|
fn encode<W: BufMut>(&self, w: &mut W) -> Result<(), EncodeError> {
|
|
let ms = self.as_millis();
|
|
let ms = VarInt::try_from(ms)?;
|
|
ms.encode(w)
|
|
}
|
|
}
|
|
|
|
impl Decode for Duration {
|
|
fn decode<R: Buf>(r: &mut R) -> Result<Self, DecodeError> {
|
|
let ms = VarInt::decode(r)?;
|
|
Ok(Self::from_millis(ms.into()))
|
|
}
|
|
}
|