1use crate::primitives::toast::ToastManager; 2 3impl ToastManager { 4 pub fn get_active(&self) -> &[crate::primitives::toast::Toast] { 5 &self.toasts 6 } 7}