Allow for compilers to be created in the dyn trait

This commit is contained in:
Omar Abdulla
2025-09-17 06:10:44 +03:00
parent 8a05f8e6e8
commit 01d8042841
3 changed files with 53 additions and 8 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ use tracing::info;
use crate::Node;
/// The node pool starts one or more [Node] which then can be accessed
/// in a round robbin fasion.
/// in a round robbin fashion.
pub struct NodePool<T> {
next: AtomicUsize,
nodes: Vec<T>,