1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use crate::client::Client; pub struct NullClient; impl Client for NullClient { fn supported(&mut self) -> bool { false } fn current_window(&mut self) -> Option<String> { None } fn current_application(&mut self) -> Option<String> { None } }