pub trait AsDynamicDataProviderAnyMarkerWrap {
    // Required method
    fn as_any_provider(&self) -> DynamicDataProviderAnyMarkerWrap<'_, Self>;
}
Expand description

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

Required Methods§

source

fn as_any_provider(&self) -> DynamicDataProviderAnyMarkerWrap<'_, Self>

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

Implementors§