Allow unused fns in ConcreteNodeMut

This commit is contained in:
Mahmoud Al-Qudsi 2024-02-28 09:44:11 -06:00
parent 50ff6b8a34
commit 5eb6b22fa4

View File

@ -269,6 +269,7 @@ pub trait ConcreteNode {
}
}
#[allow(unused)]
trait ConcreteNodeMut {
// Cast to any sub-trait.
fn as_mut_leaf(&mut self) -> Option<&mut dyn Leaf> {