use crate::coding::{Decode, DecodeError, Encode, EncodeError}; use bytes::{Buf, BufMut}; #[derive(Debug)] pub struct GoAway { pub url: String, } impl Decode for GoAway { fn decode(r: &mut R) -> Result { let url = String::decode(r)?; Ok(Self { url }) } } impl Encode for GoAway { fn encode(&self, w: &mut W) -> Result<(), EncodeError> { self.url.encode(w) } }