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