| 125 | |
| 126 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] |
| 127 | pub struct Layer<'a> { |
| 128 | pub layer: usize, |
| 129 | pub nodes: Vec<&'a Node>, |
| 130 | } |
| 131 | |
| 132 | impl<'a> Layer<'a> { |
| 133 | pub fn new(layer: usize) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected