pub trait AsDowncastingAnyProvider {
    // Required method
    fn as_downcasting(&self) -> DowncastingAnyProvider<'_, Self>;
}
Expand description

Blanket-implemented trait adding the Self::as_downcasting() function.

Required Methods§

source

fn as_downcasting(&self) -> DowncastingAnyProvider<'_, Self>

Returns an object implementing DynamicDataProvider<M> when called on AnyProvider

Implementors§