pub trait Bounded: TryFrom<usize> + Into<Self::Bounds> {
type Bounds: PartialOrd + TryInto<Self> + TryInto<usize> + Default + Copy;
}Expand description
Trait that provides an interface for bounded types.
Required Associated Types§
Object Safety§
This trait is not object safe.