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§

source

fn provide_bounds(self, bounds: T) -> ResolvedBounds<'a, T, Self>

Implementors§

source§

impl<'a, T, U> ProvideBounds<'a, T> for Uwhere U: Sized + AssertableWithBounds<'a, T>,