use crate::coding::{decode_string, encode_string, DecodeError, EncodeError}; use crate::coding::{AsyncRead, AsyncWrite}; /// Sent by the server to indicate that the client should connect to a different server. #[derive(Clone, Debug)] pub struct GoAway { pub url: String, } impl GoAway { pub async fn decode(r: &mut R) -> Result { let url = decode_string(r).await?; Ok(Self { url }) } pub async fn encode(&self, w: &mut W) -> Result<(), EncodeError> { encode_string(&self.url, w).await } }