1use crate::primitives::toast::ToastManager; 2 3impl ToastManager { 4 pub fn has_toasts(&self) -> bool { 5 !self.toasts.is_empty() 6 } 7}