/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.7.3
runtime/features/structs.rs
18 строк
371 B
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. #[derive(Clone, Debug)] pub enum UnstableFeatureKind { Cli, Runtime, } #[derive(Debug)] #[allow(dead_code)] pub struct UnstableFeatureDefinition { pub name: &'static str, pub flag_name: &'static str, pub help_text: &'static str, pub show_in_help: bool, pub id: i32, pub kind: UnstableFeatureKind, }