1 2 3 4 5 6 7 8 9 10
#[derive(Clone, Debug, Default)] pub struct ReversePrint { pub value: bool, } impl ReversePrint { pub fn is_reverse_print(&self) -> bool { self.value } }