relay_man/common/packets/
info.rs

1use bytes_kman::prelude::*;
2
3use crate::common::adress::Adress;
4
5#[derive(Bytes, Clone, Debug)]
6pub struct Info {
7    pub has: bool,
8    pub name: String,
9    pub client: String,
10    pub other: Vec<u8>,
11    pub adress: Adress,
12}