headless-talk 0.6.1

Headless talk implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug, Clone, Copy)]
pub struct ClientEnv<'a> {
    pub os: &'a str,
    pub app_version: &'a str,
    pub net_type: NetworkType,
    pub mccmnc: &'a str,
    pub language: &'a str,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[repr(i16)]
pub enum NetworkType {
    Wired = 0,
}