pub struct DynamicDataProviderAnyMarkerWrap<'a, P: ?Sized>(pub &'a P);Expand description
A wrapper over DynamicDataProvider<AnyMarker> that implements AnyProvider
Tuple Fields§
§0: &'a PTrait Implementations§
Source§impl<P> AnyProvider for DynamicDataProviderAnyMarkerWrap<'_, P>
 
impl<P> AnyProvider for DynamicDataProviderAnyMarkerWrap<'_, P>
Source§fn load_any(
    &self,
    key: DataKey,
    req: DataRequest<'_>,
) -> Result<AnyResponse, DataError>
 
fn load_any( &self, key: DataKey, req: DataRequest<'_>, ) -> Result<AnyResponse, DataError>
Loads an 
AnyPayload according to the key and request.Auto Trait Implementations§
impl<'a, P> Freeze for DynamicDataProviderAnyMarkerWrap<'a, P>where
    P: ?Sized,
impl<'a, P> RefUnwindSafe for DynamicDataProviderAnyMarkerWrap<'a, P>where
    P: RefUnwindSafe + ?Sized,
impl<'a, P> Send for DynamicDataProviderAnyMarkerWrap<'a, P>
impl<'a, P> Sync for DynamicDataProviderAnyMarkerWrap<'a, P>
impl<'a, P> Unpin for DynamicDataProviderAnyMarkerWrap<'a, P>where
    P: ?Sized,
impl<'a, P> UnwindSafe for DynamicDataProviderAnyMarkerWrap<'a, P>where
    P: RefUnwindSafe + ?Sized,
Blanket Implementations§
Source§impl<P> AsDowncastingAnyProvider for Pwhere
    P: AnyProvider + ?Sized,
 
impl<P> AsDowncastingAnyProvider for Pwhere
    P: AnyProvider + ?Sized,
Source§fn as_downcasting(&self) -> DowncastingAnyProvider<'_, P>
 
fn as_downcasting(&self) -> DowncastingAnyProvider<'_, P>
Returns an object implementing 
DynamicDataProvider<M> when called on AnyProviderSource§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more