pub trait ProvideBounds<'a, T>where
Self: Sized + AssertableWithBounds<'a, T>,{
// Required method
fn provide_bounds(self, bounds: T) -> ResolvedBounds<'a, T, Self>;
}Required Methods§
fn provide_bounds(self, bounds: T) -> ResolvedBounds<'a, T, Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.