use crate::network::*;
use crate::packet::*;
use basin2_lib::result::*;
use bytes::BytesMut;
#[derive(PartialEq, Clone, Debug)]
pub struct HelloPacket {
pub username: String,
}
impl CodablePacket for HelloPacket {
fn encode(self, buf: &mut BytesMut) {
buf.set_mc_string(self.username);
}
fn decode(buf: &mut BytesMut) -> Result<Self>
where
Self: Sized,
{
let username = buf.get_mc_string(16)?;
return Ok(HelloPacket { username });
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::packet::test::*;
#[test]
fn test_cycle() -> Result<()> {
cycle(HelloPacket {
username: "testName".to_string(),
})
}
}