| 429 | /// [`DayOfWeek`]: struct.DayOfWeek.html |
| 430 | #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] |
| 431 | pub struct Step<E> { |
| 432 | e: PhantomData<fn(E) -> E>, |
| 433 | value: u8, |
| 434 | } |
| 435 | impl<E: Sealed> Sealed for Step<E> {} |
| 436 | impl<E: ExprValue> ExprValue for Step<E> { |
| 437 | const MAX: u8 = E::MAX - E::MIN; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…