/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/shared/webxr/error.rs
19 строк
536 B
Narfinger
webxr: Remove the `ipc` feature (#41736)
07 янв 2026, 17:49
Не верифицирован
07 янв 2026, 17:49
8ec23ed
Код
Авторство
О чём код?
/* 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/. */ use serde::{Deserialize, Serialize}; /// Errors that can be produced by XR. // TODO: this is currently incomplete! #[derive(Debug, Serialize, Deserialize)] pub enum Error { NoMatchingDevice, CommunicationError, ThreadCreationError, InlineSession, UnsupportedFeature(String), BackendSpecific(String), }