pub struct NormalizedCacheImpl<TNext: Exchange> { /* private fields */ }Expand description
The implementation of the normalized cache. Exposed in case someone needs it, but most users shouldn’t.
Trait Implementations§
Source§impl<TNext: Exchange> Exchange for NormalizedCacheImpl<TNext>
impl<TNext: Exchange> Exchange for NormalizedCacheImpl<TNext>
Source§fn run<'life0, 'async_trait, Q, C>(
&'life0 self,
operation: Operation<Q::Variables>,
client: C,
) -> Pin<Box<dyn Future<Output = ExchangeResult<Q::ResponseData>> + Send + 'async_trait>>where
Q: 'async_trait + GraphQLQuery,
C: 'async_trait + Client,
Self: 'async_trait,
'life0: 'async_trait,
fn run<'life0, 'async_trait, Q, C>(
&'life0 self,
operation: Operation<Q::Variables>,
client: C,
) -> Pin<Box<dyn Future<Output = ExchangeResult<Q::ResponseData>> + Send + 'async_trait>>where
Q: 'async_trait + GraphQLQuery,
C: 'async_trait + Client,
Self: 'async_trait,
'life0: 'async_trait,
Process a query operation. Read more
Auto Trait Implementations§
impl<TNext> Freeze for NormalizedCacheImpl<TNext>where
TNext: Freeze,
impl<TNext> !RefUnwindSafe for NormalizedCacheImpl<TNext>
impl<TNext> Send for NormalizedCacheImpl<TNext>
impl<TNext> Sync for NormalizedCacheImpl<TNext>
impl<TNext> Unpin for NormalizedCacheImpl<TNext>where
TNext: Unpin,
impl<TNext> !UnwindSafe for NormalizedCacheImpl<TNext>
Blanket Implementations§
Source§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