Expand description
Cache for the Apollo client.
Structs§
- Cache
- A cache for a given namespace.
Enums§
Type Aliases§
- Event
Listener - Type alias for event listeners that can be registered with the cache.
For native targets, listeners need to be
Send
andSync
to be safely shared across threads. Listeners are functions that take aResult<Value, Error>
as an argument.Value
is theserde_json::Value
representing the configuration.Error
is the cache’s error enum.