/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.5.7
runtime/features/structs.rs
19 строк
411 B
David Sherret
fix: allow specifying otel config in `--env-file` (#29240)
12 май 2025, 04:09
Не верифицирован
12 май 2025, 04:09
e601df6
Код
Авторство
О чём код?
// Copyright 2018-2025 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, pub config_file_option: &'static str, }