pub struct SeedEntry {
pub key: Value,
pub data: Value,
}Expand description
One warmed cache entry: the canonical query key and the bare response body (the client wraps it in whatever envelope its fetch layer caches).
Fields§
§key: Value§data: ValueTrait Implementations§
Source§impl IntoSeedEntry for SeedEntry
impl IntoSeedEntry for SeedEntry
fn into_seed_entry(self) -> Option<SeedEntry>
Auto Trait Implementations§
impl Freeze for SeedEntry
impl RefUnwindSafe for SeedEntry
impl Send for SeedEntry
impl Sync for SeedEntry
impl Unpin for SeedEntry
impl UnsafeUnpin for SeedEntry
impl UnwindSafe for SeedEntry
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