1use crate::primitives::toast::ToastManager; 2 3impl ToastManager { 4 pub fn clear(&mut self) { 5 self.toasts.clear(); 6 } 7}