/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/indexeddb/mod.rs
15 строк
536 B
Gregory Terzian
indexeddb: implement databases concept(detete and `databases` method) (#41322)
23 дек 2025, 17:09
Не верифицирован
23 дек 2025, 17:09
9cd480f
Код
Авторство
О чём код?
/* 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(crate) mod idbcursor; pub(crate) mod idbcursorwithvalue; pub(crate) mod idbdatabase; pub(crate) mod idbfactory; pub(crate) mod idbindex; pub(crate) mod idbkeyrange; pub(crate) mod idbobjectstore; pub(crate) mod idbopendbrequest; pub(crate) mod idbrequest; pub(crate) mod idbtransaction; pub(crate) mod idbversionchangeevent;