1use crate::primitives::toast::Toast; 2 3impl Toast { 4 pub fn is_expired(&self) -> bool { 5 self.created_at.elapsed() >= self.duration 6 } 7}