1use super::{Log, Logger}; 2 3#[must_use] 4pub struct Nothing; 5 6impl<'a, Prompt: ?Sized, Program: ?Sized, Arguments: ?Sized> Log 7 for Logger<'a, Nothing, Prompt, Program, Arguments> 8{ 9 fn log(&self) {} 10}