Print info while exporting logs

This commit is contained in:
Joscha 2022-07-13 14:48:37 +02:00
parent f527c46dde
commit cc3fbaf968
2 changed files with 15 additions and 0 deletions

View file

@ -75,6 +75,10 @@ impl<M: Msg> Tree<M> {
}
}
pub fn len(&self) -> usize {
self.msgs.len()
}
pub fn root(&self) -> &M::Id {
&self.root
}