(mut self, interval: impl Into<Interval>)
| 584 | self |
| 585 | } |
| 586 | pub fn floats(mut self, interval: impl Into<Interval>) -> Self { |
| 587 | assert!(self.floats == Interval::None); |
| 588 | self.floats = interval.into(); |
| 589 | self |
| 590 | } |
| 591 | pub fn includes_scalars(mut self, includes_scalars: bool) -> Self { |
| 592 | self.includes_scalars = includes_scalars; |
| 593 | self |
no outgoing calls