1 2 3 4 5 6 7
use crate::HostConfig; impl crate::KeyboardTomlConfig { pub fn get_host_config(&self) -> HostConfig { self.host.clone().unwrap_or_default() } }