1 2 3 4 5 6
#[derive(thiserror::Error, Debug)] #[non_exhaustive] pub enum SchedulerError { #[error("Source with id = `{0}` is not scheduled")] SourceNotScheduled(uuid::Uuid), }