/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
runtime/features/structs.rs
18 строк
412 B
David Sherret
refactor: force a reason on clippy overrides (#32761)
16 мар 2026, 15:41
Не верифицирован
16 мар 2026, 15:41
39a07b2
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. #[derive(Clone, Debug)] pub enum UnstableFeatureKind { Cli, Runtime, } #[derive(Debug)] #[allow(dead_code, reason = "it's used, but somehow warns")] 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, }