add Debug supertrait for Backend

This commit is contained in:
steven-omaha
2023-01-30 14:57:40 +01:00
parent 6270107a69
commit a71a398e57
4 changed files with 5 additions and 1 deletions
+1
View File
@@ -5,6 +5,7 @@ use anyhow::{bail, ensure, Context, Result};
use super::Backend;
use crate::Package;
#[derive(Debug)]
pub(crate) struct ToDoPerBackend(Vec<(Box<dyn Backend>, Vec<Package>)>);
impl ToDoPerBackend {