Generate a random value of the type
(rng: &mut R)
| 491 | |
| 492 | /// Generate a random value of the type |
| 493 | fn random<R: Rng>(rng: &mut R) -> Self::Native |
| 494 | where |
| 495 | Self::Native: SampleUniform, |
| 496 | { |
| 497 | Self::gen_range(rng) |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | impl RandomTemporalValue for TimestampSecondType { |
no outgoing calls