/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/storage/lib.rs
16 строк
578 B
Gregory Terzian
serviceworkers: initial plumbing into storage endpoint for service worker caches (#46247)
21 июл 2026, 17:21
Не верифицирован
21 июл 2026, 17:21
f52360c
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ pub mod cache_storage; pub mod client_storage; mod indexeddb; pub(crate) mod shared; mod storage_thread; mod webstorage; pub use cache_storage::CacheStorageThreadFactory; pub use client_storage::ClientStorageThreadFactory; pub(crate) use indexeddb::IndexedDBThreadFactory; pub use storage_thread::new_storage_threads; pub(crate) use webstorage::WebStorageThreadFactory;