| 645 | /// A formatter for displaying a cron expression description in a specified language |
| 646 | #[derive(Debug, Clone, Copy)] |
| 647 | pub struct LanguageFormatter<'a, L> { |
| 648 | expr: &'a CronExpr, |
| 649 | lang: L, |
| 650 | } |
| 651 | |
| 652 | impl<'a, L: Language> Display for LanguageFormatter<'a, L> { |
| 653 | fn fmt(&self, f: &mut Formatter) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…