headless_talk/init/
config.rs1#[derive(Debug, Clone, Copy)]
2pub struct ClientEnv<'a> {
3 pub os: &'a str,
4 pub app_version: &'a str,
5 pub net_type: NetworkType,
6 pub mccmnc: &'a str,
7 pub language: &'a str,
8}
9
10#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
11#[repr(i16)]
12pub enum NetworkType {
13 Wired = 0,
14}