| 56 | /// Implements `SeqValidator` which ensures that for each item its left member satisfies provided validator. |
| 57 | #[derive(Debug, Clone, Copy, Default, PartialEq, Eq)] |
| 58 | pub struct CheckLeft<V>(pub V); |
| 59 | |
| 60 | impl<First: Clone, Second, V> SeqValidator<(First, Second)> for CheckLeft<V> |
| 61 | where |
no outgoing calls
no test coverage detected