1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! Bounded trait implementation for UUID. use num_traits::Bounded; use crate::UUID; impl Bounded for UUID { #[inline] fn min_value() -> Self { Self::nil() } #[inline] fn max_value() -> Self { Self::max() } }